brintos

brintos / llvm-project-archived public Read only

0
0
Text · 829 B · 702785f Raw
23 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8// This implements Semantic Analysis for DirectX constructs.9//===----------------------------------------------------------------------===//10 11#include "clang/Sema/SemaDirectX.h"12#include "clang/Sema/Sema.h"13 14namespace clang {15 16SemaDirectX::SemaDirectX(Sema &S) : SemaBase(S) {}17 18bool SemaDirectX::CheckDirectXBuiltinFunctionCall(unsigned BuiltinID,19                                                  CallExpr *TheCall) {20  return false;21}22} // namespace clang23