Remove unused struct/enum
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 14 Aug 2013 17:28:39 +0000 (17:28 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 14 Aug 2013 17:28:39 +0000 (17:28 +0000)
Patch by Matthias Braun!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188388 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/LiveInterval.h

index efad0c65fe8fcc7b0388a7a63f6ed0397298a86c..251ef50fe06ca2a2c5b5a330f6f43b37ce5ac6d9 100644 (file)
@@ -144,17 +144,6 @@ namespace llvm {
     Ranges ranges;       // the ranges in which this register is live
     VNInfoList valnos;   // value#'s
 
-    struct InstrSlots {
-      enum {
-        LOAD  = 0,
-        USE   = 1,
-        DEF   = 2,
-        STORE = 3,
-        NUM   = 4
-      };
-
-    };
-
     LiveInterval(unsigned Reg, float Weight)
       : reg(Reg), weight(Weight) {}