mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-24 12:29:33 +00:00
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
This commit is contained in:
parent
42ab8c0a90
commit
0030b52f73
@ -90,12 +90,12 @@ public:
|
|||||||
/// \returns an iterator pointing to the element after the erased one
|
/// \returns an iterator pointing to the element after the erased one
|
||||||
iplist<Instruction>::iterator eraseFromParent();
|
iplist<Instruction>::iterator eraseFromParent();
|
||||||
|
|
||||||
/// insertBefore - Insert an unlinked instructions into a basic block
|
/// Insert an unlinked instruction into a basic block immediately before
|
||||||
/// immediately before the specified instruction.
|
/// the specified instruction.
|
||||||
void insertBefore(Instruction *InsertPos);
|
void insertBefore(Instruction *InsertPos);
|
||||||
|
|
||||||
/// insertAfter - Insert an unlinked instructions into a basic block
|
/// Insert an unlinked instruction into a basic block immediately after the
|
||||||
/// immediately after the specified instruction.
|
/// specified instruction.
|
||||||
void insertAfter(Instruction *InsertPos);
|
void insertAfter(Instruction *InsertPos);
|
||||||
|
|
||||||
/// moveBefore - Unlink this instruction from its current basic block and
|
/// moveBefore - Unlink this instruction from its current basic block and
|
||||||
|
Loading…
x
Reference in New Issue
Block a user