//===------ SemaSystemZ.cpp ------ SystemZ 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 SystemZ. // //===----------------------------------------------------------------------===// #include "clang/Sema/SemaSystemZ.h" #include "clang/Basic/DiagnosticSema.h" #include "clang/Basic/TargetBuiltins.h" #include "clang/Sema/Sema.h" #include "llvm/ADT/APSInt.h" #include <optional> namespace clang { SemaSystemZ::SemaSystemZ(Sema &S) : … { … } bool SemaSystemZ::CheckSystemZBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) { … } } // namespace clang