aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-01-08 22:19:34 +0000
committerDan Gohman <gohman@apple.com>2009-01-08 22:19:34 +0000
commitf87dc9264adc6f4afcdf2a88f02e35bb9af8cf0a (patch)
treec52ce82d9d190359eb63b44bc0c414b03ca6670f /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent138436f158fde9286994e9788426ceed2cba77f6 (diff)
downloadllvm-f87dc9264adc6f4afcdf2a88f02e35bb9af8cf0a.zip
llvm-f87dc9264adc6f4afcdf2a88f02e35bb9af8cf0a.tar.gz
llvm-f87dc9264adc6f4afcdf2a88f02e35bb9af8cf0a.tar.bz2
Delete unnecessary parens around return values.
llvm-svn: 61950
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineBasicBlock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp
index db55a88..1d68d7c 100644
--- a/llvm/lib/CodeGen/MachineBasicBlock.cpp
+++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp
@@ -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) {