Skip to content

Commit

Permalink
[PowerPC] Remove unnecessary braces in PPCVSXFMAMutate
Browse files Browse the repository at this point in the history
Address Eric's post-commit review of r245741. NFC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@246121 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Hal Finkel committed Aug 26, 2015
1 parent 935e1b6 commit 251711d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Target/PowerPC/PPCVSXFMAMutate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ namespace {

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);

Expand Down

0 comments on commit 251711d

Please sign in to comment.