summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-08-18 20:04:28 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-08-18 20:04:28 +0000
commitd6640951c2425fd2fded86b380bbe5491c7940cd (patch)
treed86cec6054a14ab4f240cbfb232e68d18d80075f /include
parent418379e229dc491050f7f6292aa8364c29b71301 (diff)
downloadllvm-d6640951c2425fd2fded86b380bbe5491c7940cd.tar.gz
llvm-d6640951c2425fd2fded86b380bbe5491c7940cd.tar.bz2
llvm-d6640951c2425fd2fded86b380bbe5491c7940cd.tar.xz
M_DUMMY_PHI_FLAG is no longer used to distinguish V9::PHI. Get rid of it and
its TargetInstrInfo accessor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15907 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetInstrInfo.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index cf1d11a937..bc25fa722b 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -51,7 +51,6 @@ const unsigned M_BARRIER_FLAG = 1 << 4;
const unsigned M_CC_FLAG = 1 << 6;
const unsigned M_LOAD_FLAG = 1 << 10;
const unsigned M_STORE_FLAG = 1 << 12;
-const unsigned M_DUMMY_PHI_FLAG = 1 << 13;
// 3-addr instructions which really work like 2-addr ones, eg. X86 add/sub
const unsigned M_2_ADDR_FLAG = 1 << 15;
@@ -203,10 +202,6 @@ public:
bool isStore(MachineOpCode Opcode) const {
return get(Opcode).Flags & M_STORE_FLAG;
}
- bool isDummyPhiInstr(MachineOpCode Opcode) const {
- return get(Opcode).Flags & M_DUMMY_PHI_FLAG;
- }
-
virtual bool hasResultInterlock(MachineOpCode Opcode) const {
return true;
}