Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/clang/lib/Sema/SemaDirectX.cpp
213766 views
1
//===- SemaDirectX.cpp - Semantic Analysis for DirectX constructs----------===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
// This implements Semantic Analysis for DirectX constructs.
9
//===----------------------------------------------------------------------===//
10
11
#include "clang/Sema/SemaDirectX.h"
12
#include "clang/Sema/Sema.h"
13
14
namespace clang {
15
16
SemaDirectX::SemaDirectX(Sema &S) : SemaBase(S) {}
17
18
bool SemaDirectX::CheckDirectXBuiltinFunctionCall(unsigned BuiltinID,
19
CallExpr *TheCall) {
20
return false;
21
}
22
} // namespace clang
23
24