diff options
author | David Greene <greened@obbligato.org> | 2009-12-04 23:08:02 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-12-04 23:08:02 +0000 |
commit | 03c8406fc19658a3a8dc8ee00fddc88160038683 (patch) | |
tree | 2642e917250de6f60f1706160543df319bb83f2d /include/llvm/Target | |
parent | 5e3363255912c559e8251121491a2a9e901f07ac (diff) | |
download | external_llvm-03c8406fc19658a3a8dc8ee00fddc88160038683.zip external_llvm-03c8406fc19658a3a8dc8ee00fddc88160038683.tar.gz external_llvm-03c8406fc19658a3a8dc8ee00fddc88160038683.tar.bz2 |
Fix a bad merge.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90616 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index ee3b21a..fd048f9 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -547,13 +547,6 @@ public: /// length. virtual unsigned getInlineAsmLength(const char *Str, const MCAsmInfo &MAI) const; - - /// TailDuplicationLimit - Returns the limit on the number of instructions - /// in basic block MBB beyond which it will not be tail-duplicated. - virtual unsigned TailDuplicationLimit(const MachineBasicBlock &MBB, - unsigned DefaultLimit) const { - return DefaultLimit; - } }; /// TargetInstrInfoImpl - This is the default implementation of |