mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 17:56:06 +00:00

Targets.cpp is getting unwieldy, and even minor changes cause the entire thing to cause recompilation for everyone. This patch bites the bullet and breaks it up into a number of files. I tended to keep function definitions in the class declaration unless it caused additional includes to be necessary. In those cases, I pulled it over into the .cpp file. Content is copy/paste for the most part, besides includes/format/etc. Differential Revision: https://reviews.llvm.org/D35701 llvm-svn: 308791
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
//===--- TCE.cpp - Implement TCE target feature support -------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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__");
|
|
}
|