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 | ef682b7fdd6c1fc93490a01b7ba4093e4c935771 (patch) | |
tree | 2642e917250de6f60f1706160543df319bb83f2d | |
parent | 989d418a4e80243a7c1ef377b24129218ba99cd5 (diff) | |
download | external_llvm-ef682b7fdd6c1fc93490a01b7ba4093e4c935771.zip external_llvm-ef682b7fdd6c1fc93490a01b7ba4093e4c935771.tar.gz external_llvm-ef682b7fdd6c1fc93490a01b7ba4093e4c935771.tar.bz2 |
Fix a bad merge.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90616 91177308-0d34-0410-b5e6-96231b3b80d8
-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 |