mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Fold variable that's only used in assert into the assert.
Avoids unused variable warnings in Release builds. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183512 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ab5ad9fe50
commit
041399aad5
@ -74,8 +74,7 @@ ScheduleHazardRecognizer *PPCInstrInfo::CreateTargetPostRAHazardRecognizer(
|
||||
// Most subtargets use a PPC970 recognizer.
|
||||
if (Directive != PPC::DIR_440 && Directive != PPC::DIR_A2 &&
|
||||
Directive != PPC::DIR_E500mc && Directive != PPC::DIR_E5500) {
|
||||
const TargetInstrInfo *TII = TM.getInstrInfo();
|
||||
assert(TII && "No InstrInfo?");
|
||||
assert(TM.getInstrInfo() && "No InstrInfo?");
|
||||
|
||||
return new PPCHazardRecognizer970(TM);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user