From f87dc9264adc6f4afcdf2a88f02e35bb9af8cf0a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 8 Jan 2009 22:19:34 +0000 Subject: Delete unnecessary parens around return values. llvm-svn: 61950 --- llvm/lib/CodeGen/BranchFolding.cpp | 2 +- llvm/lib/CodeGen/MachineBasicBlock.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/CodeGen') diff --git a/llvm/lib/CodeGen/BranchFolding.cpp b/llvm/lib/CodeGen/BranchFolding.cpp index 4bf94349565..85df7a9d36c 100644 --- a/llvm/lib/CodeGen/BranchFolding.cpp +++ b/llvm/lib/CodeGen/BranchFolding.cpp @@ -463,7 +463,7 @@ static bool MergeCompare(const std::pair &p, #ifndef _GLIBCXX_DEBUG assert(0 && "Predecessor appears twice"); #endif - return(false); + return false; } } diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index db55a88eddc..1d68d7cd2b9 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) { -- cgit v1.2.3