Another optimization, speed up the testcase to 2.7s
[oota-llvm.git] / lib / CodeGen / RegAlloc / RegAllocCommon.h
1 //===-- RegAllocCommon.h --------------------------------------------------===//
2 // 
3 //  Shared declarations for register allocation.
4 // 
5 //===----------------------------------------------------------------------===//
6
7 #ifndef LLVM_CODEGEN_REGALLOCCOMMON_H
8 #define LLVM_CODEGEN_REGALLOCCOMMON_H
9
10 enum RegAllocDebugLevel_t {
11   RA_DEBUG_None         = 0,
12   RA_DEBUG_Results      = 1,
13   RA_DEBUG_Coloring     = 2,
14   RA_DEBUG_Interference = 3,
15   RA_DEBUG_LiveRanges   = 4,
16   RA_DEBUG_Verbose      = 5
17 };
18
19 extern RegAllocDebugLevel_t DEBUG_RA;
20
21 #endif