mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
TargetPassConfig: confine the MC configuration to TargetMachine.
Passes prior to instructon selection are now split into separate configurable stages. Header dependencies are simplified. The bulk of this diff is simply removal of the silly DisableVerify flags. Sorry for the target header churn. Attempting to stabilize them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149754 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -93,9 +93,8 @@ namespace {
|
||||
/// Mips Code Generator Pass Configuration Options.
|
||||
class MipsPassConfig : public TargetPassConfig {
|
||||
public:
|
||||
MipsPassConfig(MipsTargetMachine *TM, PassManagerBase &PM,
|
||||
bool DisableVerifyFlag)
|
||||
: TargetPassConfig(TM, PM, DisableVerifyFlag) {}
|
||||
MipsPassConfig(MipsTargetMachine *TM, PassManagerBase &PM)
|
||||
: TargetPassConfig(TM, PM) {}
|
||||
|
||||
MipsTargetMachine &getMipsTargetMachine() const {
|
||||
return getTM<MipsTargetMachine>();
|
||||
@@ -112,9 +111,8 @@ public:
|
||||
};
|
||||
} // namespace
|
||||
|
||||
TargetPassConfig *MipsTargetMachine::createPassConfig(PassManagerBase &PM,
|
||||
bool DisableVerify) {
|
||||
return new MipsPassConfig(this, PM, DisableVerify);
|
||||
TargetPassConfig *MipsTargetMachine::createPassConfig(PassManagerBase &PM) {
|
||||
return new MipsPassConfig(this, PM);
|
||||
}
|
||||
|
||||
// Install an instruction selector pass using
|
||||
|
||||
Reference in New Issue
Block a user