mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
r70270 isn't ready yet. Back this out. Sorry for the noise.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70275 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -55,17 +55,14 @@ unsigned XCoreTargetMachine::getModuleMatchQuality(const Module &M) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool XCoreTargetMachine::addInstSelector(PassManagerBase &PM,
|
||||
unsigned OptLevel) {
|
||||
bool XCoreTargetMachine::addInstSelector(PassManagerBase &PM, bool Fast) {
|
||||
PM.add(createXCoreISelDag(*this));
|
||||
return false;
|
||||
}
|
||||
|
||||
bool XCoreTargetMachine::addAssemblyEmitter(PassManagerBase &PM,
|
||||
unsigned OptLevel,
|
||||
bool Verbose,
|
||||
raw_ostream &Out) {
|
||||
bool XCoreTargetMachine::addAssemblyEmitter(PassManagerBase &PM, bool Fast,
|
||||
bool Verbose, raw_ostream &Out) {
|
||||
// Output assembly language.
|
||||
PM.add(createXCoreCodePrinterPass(Out, *this, OptLevel, Verbose));
|
||||
PM.add(createXCoreCodePrinterPass(Out, *this, Fast, Verbose));
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user