diff options
author | Dale Johannesen <dalej@apple.com> | 2009-10-12 18:49:00 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2009-10-12 18:49:00 +0000 |
commit | 3a6b9eb868f579b945aa8ec8fadf65e4dd913555 (patch) | |
tree | ca7b4a8f6992c73b826fc4cb08f60fd1f576bfea /include/llvm | |
parent | c1deda50ca04d25e21a9b0bbd0ccccc882993e74 (diff) | |
download | external_llvm-3a6b9eb868f579b945aa8ec8fadf65e4dd913555.zip external_llvm-3a6b9eb868f579b945aa8ec8fadf65e4dd913555.tar.gz external_llvm-3a6b9eb868f579b945aa8ec8fadf65e4dd913555.tar.bz2 |
Revert the kludge in 76703. I got a clean
bootstrap of FSF-style PPC, so there is some
reason to believe the original bug (which was
never analyzed) has been fixed, probably by
82266.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83871 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index 5cd6ff5..919bef1 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -449,10 +449,6 @@ public: return true; } - /// isDeadInstruction - Return true if the instruction is considered dead. - /// This allows some late codegen passes to delete them. - virtual bool isDeadInstruction(const MachineInstr *MI) const = 0; - /// GetInstSize - Returns the size of the specified Instruction. /// virtual unsigned GetInstSizeInBytes(const MachineInstr *MI) const { @@ -490,8 +486,6 @@ public: MachineBasicBlock::iterator MI, unsigned DestReg, unsigned SubReg, const MachineInstr *Orig) const; - virtual bool isDeadInstruction(const MachineInstr *MI) const; - virtual unsigned GetFunctionSizeInBytes(const MachineFunction &MF) const; }; |