diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-21 22:36:52 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-21 22:36:52 +0000 |
commit | 835702a094b0900a0b550f36a26df8ef7a15d3c7 (patch) | |
tree | ec199ff2deeddad48d7bd9642048c39890a132b2 /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | b47d28bfe8ee904b83138e23760b59681b42c01b (diff) | |
download | bcm5719-llvm-835702a094b0900a0b550f36a26df8ef7a15d3c7.tar.gz bcm5719-llvm-835702a094b0900a0b550f36a26df8ef7a15d3c7.zip |
Remove trailing whitespace
llvm-svn: 21420
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 695ba13a49d..ee8da6744e3 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -133,7 +133,7 @@ void MachineBasicBlock::addPredecessor(MachineBasicBlock *pred) { } void MachineBasicBlock::removePredecessor(MachineBasicBlock *pred) { - std::vector<MachineBasicBlock *>::iterator I = + std::vector<MachineBasicBlock *>::iterator I = std::find(Predecessors.begin(), Predecessors.end(), pred); assert(I != Predecessors.end() && "Pred is not a predecessor of this block!"); Predecessors.erase(I); |