Path: blob/main/contrib/llvm-project/clang/lib/Sema/SemaDirectX.cpp
213766 views
//===- SemaDirectX.cpp - Semantic Analysis for DirectX constructs----------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7// This implements Semantic Analysis for DirectX constructs.8//===----------------------------------------------------------------------===//910#include "clang/Sema/SemaDirectX.h"11#include "clang/Sema/Sema.h"1213namespace clang {1415SemaDirectX::SemaDirectX(Sema &S) : SemaBase(S) {}1617bool SemaDirectX::CheckDirectXBuiltinFunctionCall(unsigned BuiltinID,18CallExpr *TheCall) {19return false;20}21} // namespace clang222324