mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Add ifdef around getSubtargetFeatureName in tablegen output file so that only targets that want the function get it. This prevents other targets from getting an unused function warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155538 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c16f851569
commit
8030e1a0df
@ -7595,5 +7595,6 @@ extern "C" void LLVMInitializeARMAsmParser() {
|
||||
}
|
||||
|
||||
#define GET_REGISTER_MATCHER
|
||||
#define GET_SUBTARGET_FEATURE_NAME
|
||||
#define GET_MATCHER_IMPLEMENTATION
|
||||
#include "ARMGenAsmMatcher.inc"
|
||||
|
@ -2395,13 +2395,17 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
|
||||
|
||||
OS << "#endif // GET_REGISTER_MATCHER\n\n";
|
||||
|
||||
|
||||
OS << "\n#ifdef GET_MATCHER_IMPLEMENTATION\n";
|
||||
OS << "#undef GET_MATCHER_IMPLEMENTATION\n\n";
|
||||
OS << "\n#ifdef GET_SUBTARGET_FEATURE_NAME\n";
|
||||
OS << "#undef GET_SUBTARGET_FEATURE_NAME\n\n";
|
||||
|
||||
// Generate the helper function to get the names for subtarget features.
|
||||
emitGetSubtargetFeatureName(Info, OS);
|
||||
|
||||
OS << "#endif // GET_SUBTARGET_FEATURE_NAME\n\n";
|
||||
|
||||
OS << "\n#ifdef GET_MATCHER_IMPLEMENTATION\n";
|
||||
OS << "#undef GET_MATCHER_IMPLEMENTATION\n\n";
|
||||
|
||||
// Generate the function that remaps for mnemonic aliases.
|
||||
bool HasMnemonicAliases = emitMnemonicAliases(OS, Info);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user