From 292e417c1b3452c43d224e1a928c89bde6469515 Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Wed, 14 Aug 2013 17:28:39 +0000 Subject: [PATCH] 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 --- include/llvm/CodeGen/LiveInterval.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index efad0c65fe8..251ef50fe06 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) {} -- 2.34.1