[llvm] r237300 - Fix typo on Instruction::insert{After, Before}(). NFC
Jonathan Roelofs
jonathan at codesourcery.com
Wed May 13 15:14:43 PDT 2015
Author: jroelofs
Date: Wed May 13 17:14:43 2015
New Revision: 237300
URL: http://llvm.org/viewvc/llvm-project?rev=237300&view=rev
Log:
Fix typo on Instruction::insert{After,Before}(). NFC
Modified:
llvm/trunk/include/llvm/IR/Instruction.h
Modified: llvm/trunk/include/llvm/IR/Instruction.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Instruction.h?rev=237300&r1=237299&r2=237300&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Instruction.h (original)
+++ llvm/trunk/include/llvm/IR/Instruction.h Wed May 13 17:14:43 2015
@@ -90,12 +90,12 @@ public:
/// \returns an iterator pointing to the element after the erased one
iplist<Instruction>::iterator eraseFromParent();
- /// insertBefore - Insert an unlinked instructions into a basic block
- /// immediately before the specified instruction.
+ /// Insert an unlinked instruction into a basic block immediately before
+ /// the specified instruction.
void insertBefore(Instruction *InsertPos);
- /// insertAfter - Insert an unlinked instructions into a basic block
- /// immediately after the specified instruction.
+ /// Insert an unlinked instruction into a basic block immediately after the
+ /// specified instruction.
void insertAfter(Instruction *InsertPos);
/// moveBefore - Unlink this instruction from its current basic block and
More information about the llvm-commits
mailing list