1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

less indent; NFCI

llvm-svn: 252643
This commit is contained in:
Sanjay Patel 2015-11-10 20:09:02 +00:00
parent 8d957f05fa
commit 76de0627f7

View File

@ -386,7 +386,9 @@ bool MachineCombiner::combineInstructions(MachineBasicBlock *MBB) {
// mostly one pattern, and getMachineCombinerPatterns() can order patterns
// based on an internal cost heuristic.
if (TII->getMachineCombinerPatterns(MI, Patterns)) {
if (!TII->getMachineCombinerPatterns(MI, Patterns))
continue;
for (auto P : Patterns) {
SmallVector<MachineInstr *, 16> InsInstrs;
SmallVector<MachineInstr *, 16> DelInstrs;
@ -435,7 +437,6 @@ bool MachineCombiner::combineInstructions(MachineBasicBlock *MBB) {
InstrIdxForVirtReg.clear();
}
}
}
return Changed;
}