diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2006-10-24 14:47:28 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2006-10-24 14:47:28 +0000 |
commit | 24321d7e23a482cbd0b7502f43e9026f87a3684d (patch) | |
tree | 50f5d58b9c4e8ccf09e76b6328e68c434083eb59 | |
parent | e719d9f8f29bfc227eb109f6cee51a150a25189f (diff) |
fix assert comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31154 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index e74cb138ab..fefa0c6eb7 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -314,7 +314,7 @@ public: virtual void InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, const std::vector<MachineOperand> &Cond) const { - assert(0 && "Target didn't implement TargetInstrInfo::RemoveBranch!"); + assert(0 && "Target didn't implement TargetInstrInfo::InsertBranch!"); } /// ReverseBranchCondition - Reverses the branch condition of the specified |