aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2013-08-14 17:28:39 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2013-08-14 17:28:39 +0000
commit292e417c1b3452c43d224e1a928c89bde6469515 (patch)
treea29b7a24a62259593005ebe6c271e7547e79e646 /include
parent6889483ca4bd5f2634c9041aa076aad01ac38b39 (diff)
downloadexternal_llvm-292e417c1b3452c43d224e1a928c89bde6469515.zip
external_llvm-292e417c1b3452c43d224e1a928c89bde6469515.tar.gz
external_llvm-292e417c1b3452c43d224e1a928c89bde6469515.tar.bz2
Remove unused struct/enum
Patch by Matthias Braun! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/LiveInterval.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h
index efad0c6..251ef50 100644
--- a/include/llvm/CodeGen/LiveInterval.h
+++ b/include/llvm/CodeGen/LiveInterval.h
@@ -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) {}