From 7ff6aa2e6248cd15c9a3464699722ec75cbf9f78 Mon Sep 17 00:00:00 2001 From: David Greene Date: Fri, 4 Dec 2009 23:08:02 +0000 Subject: [PATCH] Fix a bad merge. llvm-svn: 90616 --- include/llvm/Target/TargetInstrInfo.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index ee3b21ad695..fd048f9810d 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