[llvm] r205605 - Fix spelling. Sigh.
Jim Grosbach
grosbach at apple.com
Thu Apr 3 19:14:38 PDT 2014
Author: grosbach
Date: Thu Apr 3 21:14:38 2014
New Revision: 205605
URL: http://llvm.org/viewvc/llvm-project?rev=205605&view=rev
Log:
Fix spelling. Sigh.
Modified:
llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h
Modified: llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h?rev=205605&r1=205604&r2=205605&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h Thu Apr 3 21:14:38 2014
@@ -295,10 +295,10 @@ public:
inline iterator_range<const_pred_iterator> const_predecessors() const {
return iterator_range<const_pred_iterator>(pred_begin(), pred_end());
}
- inline iterator_range<succ_iterator> succecessors() {
+ inline iterator_range<succ_iterator> successors() {
return iterator_range<succ_iterator>(succ_begin(), succ_end());
}
- inline iterator_range<const_succ_iterator> const_succecessors() const {
+ inline iterator_range<const_succ_iterator> const_successors() const {
return iterator_range<const_succ_iterator>(succ_begin(), succ_end());
}
More information about the llvm-commits
mailing list