mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Call static functions so that they aren't left unused.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128020 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a796fa547f
commit
8a77af8eac
@ -847,7 +847,6 @@ void AsmWriterEmitter::EmitPrintAliasInstruction(raw_ostream &O) {
|
||||
AliasMap[getQualifiedName(Op->getDef())].push_back(Alias);
|
||||
}
|
||||
|
||||
#if 0
|
||||
// A map of which conditions need to be met for each instruction operand
|
||||
// before it can be matched to the mnemonic.
|
||||
std::map<std::string, std::vector<IAPrinter*> > IAPrinterMap;
|
||||
@ -930,15 +929,18 @@ void AsmWriterEmitter::EmitPrintAliasInstruction(raw_ostream &O) {
|
||||
if (CantHandle) continue;
|
||||
IAPrinterMap[I->first].push_back(IAP);
|
||||
|
||||
#if 0
|
||||
O.indent(4) << "// " << I->first << '\n';
|
||||
O.indent(4);
|
||||
IAP->print(O);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
O << "#if 0\n";
|
||||
EmitSubtargetFeatureFlagEnumeration(AWI, O);
|
||||
EmitComputeAvailableFeatures(AWI, AsmWriter, Target, O);
|
||||
#endif
|
||||
O << "#endif\n\n";
|
||||
|
||||
O << "bool " << Target.getName() << ClassName
|
||||
<< "::printAliasInstr(const " << MachineInstrClassName
|
||||
|
Loading…
x
Reference in New Issue
Block a user