Delete unnecessary parens around return values.

llvm-svn: 61950
This commit is contained in:
Dan Gohman
2009-01-08 22:19:34 +00:00
parent 138436f158
commit f87dc9264a
3 changed files with 4 additions and 4 deletions

View File

@@ -221,7 +221,7 @@ MachineBasicBlock::succ_iterator
MachineBasicBlock::removeSuccessor(succ_iterator I) {
assert(I != Successors.end() && "Not a current successor!");
(*I)->removePredecessor(this);
return(Successors.erase(I));
return Successors.erase(I);
}
void MachineBasicBlock::addPredecessor(MachineBasicBlock *pred) {