diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-24 17:41:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-24 17:41:22 +0000 |
commit | 33644ba8d22a91b8fe0f0da3d73fc7cf38a46b06 (patch) | |
tree | 9a64802ec75792e3aa97993bb446c4c0d4d750c6 | |
parent | bacf9f48886c78ba7c27b8590db7c8b3ebb13acc (diff) |
update comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31165 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index fefa0c6eb7..9e269f3692 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -309,8 +309,9 @@ public: /// InsertBranch - Insert a branch into the end of the specified /// MachineBasicBlock. This operands to this method are the same as those - /// returned by AnalyzeBranch. This nis invoked in cases where AnalyzeBranch - /// returns success. + /// returned by AnalyzeBranch. This is invoked in cases where AnalyzeBranch + /// returns success and when an unconditional branch (TBB is non-null, FBB is + /// null, Cond is empty) needs to be inserted. virtual void InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, const std::vector<MachineOperand> &Cond) const { |