//===------ SemaHexagon.cpp ------ Hexagon target-specific routines -------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file implements semantic analysis functions specific to Hexagon. // //===----------------------------------------------------------------------===// #include "clang/Sema/SemaHexagon.h" #include "clang/Basic/TargetBuiltins.h" #include "clang/Sema/Sema.h" #include "llvm/ADT/STLExtras.h" #include <cstdint> #include <iterator> namespace clang { SemaHexagon::SemaHexagon(Sema &S) : … { … } bool SemaHexagon::CheckHexagonBuiltinArgument(unsigned BuiltinID, CallExpr *TheCall) { … } bool SemaHexagon::CheckHexagonBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) { … } } // namespace clang