[llvm-commits] CVS: llvm/include/llvm/Target/TargetInstrInfo.h

Brian Gaeke gaeke at cs.uiuc.edu
Wed Aug 18 10:44:29 PDT 2004



Changes in directory llvm/include/llvm/Target:

TargetInstrInfo.h updated: 1.67 -> 1.68
---
Log message:

M_PSEUDO_FLAG is no longer used. Get rid of it and its accessor.


---
Diffs of the changes:  (+0 -4)

Index: llvm/include/llvm/Target/TargetInstrInfo.h
diff -u llvm/include/llvm/Target/TargetInstrInfo.h:1.67 llvm/include/llvm/Target/TargetInstrInfo.h:1.68
--- llvm/include/llvm/Target/TargetInstrInfo.h:1.67	Wed Aug  4 03:06:30 2004
+++ llvm/include/llvm/Target/TargetInstrInfo.h	Wed Aug 18 12:44:17 2004
@@ -52,7 +52,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 @@
     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;
   }






More information about the llvm-commits mailing list