*** empty log message ***
[oota-llvm.git] / lib / Target / SparcV9 / RegAlloc / RegAllocCommon.h
1
2
3 #ifndef REG_ALLOC_COMMON_H
4 #define REG_ALLOC_COMMON_H
5
6 // set DEBUG_RA for printing out debug messages
7 // if DEBUG_RA is 1 normal output messages
8 // if DEBUG_RA is 2 extensive debug info for each instr
9
10 enum RegAllocDebugLevel_t {
11   RA_DEBUG_None    = 0,
12   RA_DEBUG_Normal  = 1,
13   RA_DEBUG_Verbose = 2,
14 };
15
16 extern RegAllocDebugLevel_t DEBUG_RA;
17
18 #endif