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 | f215bb209351a7fa2244cc691ef214b6beaa757e (patch) | |
tree | ca7b4a8f6992c73b826fc4cb08f60fd1f576bfea /include/llvm | |
parent | b58870629223e655f015b90de48154b7b837259b (diff) | |
download | external_llvm-f215bb209351a7fa2244cc691ef214b6beaa757e.tar.gz external_llvm-f215bb209351a7fa2244cc691ef214b6beaa757e.tar.bz2 external_llvm-f215bb209351a7fa2244cc691ef214b6beaa757e.zip |
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 5cd6ff5082..919bef1e7f 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; }; |