R600/SI: Fix hardcoded values for modifiers.
[oota-llvm.git] / lib / Target / R600 / SIInstrInfo.h
index 7454f8d687deeeca31d02791219de30122c14433..f2edd8cc2c11f6980b60b93db9dfc817e177281a 100644 (file)
@@ -270,20 +270,4 @@ enum Offsets {
 
 } // End namespace llvm
 
-namespace SIInstrFlags {
-  enum Flags {
-    // First 4 bits are the instruction encoding
-    VM_CNT = 1 << 0,
-    EXP_CNT = 1 << 1,
-    LGKM_CNT = 1 << 2
-  };
-}
-
-namespace SISrcMods {
-  enum {
-   NEG = 1 << 0,
-   ABS = 1 << 1
-  };
-}
-
 #endif