[PowerPC] Remove unnecessary braces in PPCVSXFMAMutate

Address Eric's post-commit review of r245741. NFC.

llvm-svn: 246121
This commit is contained in:
Hal Finkel 2015-08-26 23:41:53 +00:00
parent 6c64738e87
commit 7ffe55ae9d
1 changed files with 3 additions and 3 deletions

View File

@ -103,10 +103,10 @@ protected:
VNInfo *AddendValNo =
LIS->getInterval(MI->getOperand(1).getReg()).Query(FMAIdx).valueIn();
if (!AddendValNo) {
// This can be null if the register is undef.
// This can be null if the register is undef.
if (!AddendValNo)
continue;
}
MachineInstr *AddendMI = LIS->getInstructionFromIndex(AddendValNo->def);