[llvm] r188388 - Remove unused struct/enum
Jakob Stoklund Olesen
stoklund at 2pi.dk
Wed Aug 14 10:28:39 PDT 2013
Author: stoklund
Date: Wed Aug 14 12:28:39 2013
New Revision: 188388
URL: http://llvm.org/viewvc/llvm-project?rev=188388&view=rev
Log:
Remove unused struct/enum
Patch by Matthias Braun!
Modified:
llvm/trunk/include/llvm/CodeGen/LiveInterval.h
Modified: llvm/trunk/include/llvm/CodeGen/LiveInterval.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/LiveInterval.h?rev=188388&r1=188387&r2=188388&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/LiveInterval.h (original)
+++ llvm/trunk/include/llvm/CodeGen/LiveInterval.h Wed Aug 14 12:28:39 2013
@@ -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) {}
More information about the llvm-commits
mailing list