summaryrefslogtreecommitdiff
path: root/contrib/llvm-project/clang/lib/Basic/Targets/TCE.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/clang/lib/Basic/Targets/TCE.cpp')
-rw-r--r--contrib/llvm-project/clang/lib/Basic/Targets/TCE.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/contrib/llvm-project/clang/lib/Basic/Targets/TCE.cpp b/contrib/llvm-project/clang/lib/Basic/Targets/TCE.cpp
new file mode 100644
index 000000000000..91194b568a09
--- /dev/null
+++ b/contrib/llvm-project/clang/lib/Basic/Targets/TCE.cpp
@@ -0,0 +1,34 @@
+//===--- TCE.cpp - Implement TCE target feature support -------------------===//
+//
+// 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 TCE TargetInfo objects.
+//
+//===----------------------------------------------------------------------===//
+
+#include "TCE.h"
+#include "Targets.h"
+#include "clang/Basic/MacroBuilder.h"
+
+using namespace clang;
+using namespace clang::targets;
+
+void TCETargetInfo::getTargetDefines(const LangOptions &Opts,
+ MacroBuilder &Builder) const {
+ DefineStd(Builder, "tce", Opts);
+ Builder.defineMacro("__TCE__");
+ Builder.defineMacro("__TCE_V1__");
+}
+
+void TCELETargetInfo::getTargetDefines(const LangOptions &Opts,
+ MacroBuilder &Builder) const {
+ DefineStd(Builder, "tcele", Opts);
+ Builder.defineMacro("__TCE__");
+ Builder.defineMacro("__TCE_V1__");
+ Builder.defineMacro("__TCELE__");
+ Builder.defineMacro("__TCELE_V1__");
+}