From 0030b52f735ee386db12c2472fc32d2dd1522f18 Mon Sep 17 00:00:00 2001 From: Jonathan Roelofs Date: Wed, 13 May 2015 22:14:43 +0000 Subject: [PATCH] Fix typo on Instruction::insert{After,Before}(). NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237300 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/Instruction.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/llvm/IR/Instruction.h b/include/llvm/IR/Instruction.h index 9dd16fd5a60..2b9bc778410 100644 --- a/include/llvm/IR/Instruction.h +++ b/include/llvm/IR/Instruction.h @@ -90,12 +90,12 @@ public: /// \returns an iterator pointing to the element after the erased one iplist::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 -- 2.34.1