/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/lib/Basic/Targets/Le64.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | //===--- Le64.cpp - Implement Le64 target feature support -----------------===// |
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 | | // |
9 | | // This file implements Le64 TargetInfo objects. |
10 | | // |
11 | | //===----------------------------------------------------------------------===// |
12 | | |
13 | | #include "Le64.h" |
14 | | #include "Targets.h" |
15 | | #include "clang/Basic/Builtins.h" |
16 | | #include "clang/Basic/MacroBuilder.h" |
17 | | #include "clang/Basic/TargetBuiltins.h" |
18 | | |
19 | | using namespace clang; |
20 | | using namespace clang::targets; |
21 | | |
22 | 0 | ArrayRef<Builtin::Info> Le64TargetInfo::getTargetBuiltins() const { |
23 | 0 | return {}; |
24 | 0 | } |
25 | | |
26 | | void Le64TargetInfo::getTargetDefines(const LangOptions &Opts, |
27 | 0 | MacroBuilder &Builder) const { |
28 | 0 | DefineStd(Builder, "unix", Opts); |
29 | 0 | defineCPUMacros(Builder, "le64", /*Tuning=*/false); |
30 | 0 | Builder.defineMacro("__ELF__"); |
31 | 0 | } |