aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-08-18 17:44:17 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-08-18 17:44:17 +0000
commitb406d84dd8f8faee31d891ab9af298c672f98256 (patch)
tree915acb0f6d289fd99344bb3043ed7d836fa51fee /include
parent5978a532e8beefec4a7860f00bfd4bb6c44df340 (diff)
downloadexternal_llvm-b406d84dd8f8faee31d891ab9af298c672f98256.zip
external_llvm-b406d84dd8f8faee31d891ab9af298c672f98256.tar.gz
external_llvm-b406d84dd8f8faee31d891ab9af298c672f98256.tar.bz2
M_PSEUDO_FLAG is no longer used. Get rid of it and its accessor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15902 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetInstrInfo.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index 8243633..cf1d11a 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -52,7 +52,6 @@ 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;
-const unsigned M_PSEUDO_FLAG = 1 << 14; // Pseudo instruction
// 3-addr instructions which really work like 2-addr ones, eg. X86 add/sub
const unsigned M_2_ADDR_FLAG = 1 << 15;
@@ -137,9 +136,6 @@ public:
return get(Opcode).Flags & M_RET_FLAG;
}
- bool isPseudoInstr(MachineOpCode Opcode) const {
- return get(Opcode).Flags & M_PSEUDO_FLAG;
- }
bool isTwoAddrInstr(MachineOpCode Opcode) const {
return get(Opcode).Flags & M_2_ADDR_FLAG;
}