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 SemaDirectX(Sema & S)16SemaDirectX::SemaDirectX(Sema &S) : SemaBase(S) {} 17 CheckDirectXBuiltinFunctionCall(unsigned BuiltinID,CallExpr * TheCall)18bool SemaDirectX::CheckDirectXBuiltinFunctionCall(unsigned BuiltinID, 19 CallExpr *TheCall) { 20 return false; 21 } 22 } // namespace clang 23