1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 06:22:56 +02:00
llvm-mirror/include/llvm/CodeGen/RegAllocCommon.h
Chris Lattner 07732a38b7 Avoid #including CommandLine.h
llvm-svn: 2710
2002-05-22 17:06:56 +00:00

19 lines
355 B
C

#ifndef REG_ALLOC_COMMON_H
#define REG_ALLOC_COMMON_H
// set DEBUG_RA for printing out debug messages
// if DEBUG_RA is 1 normal output messages
// if DEBUG_RA is 2 extensive debug info for each instr
enum RegAllocDebugLevel_t {
RA_DEBUG_None = 0,
RA_DEBUG_Normal = 1,
RA_DEBUG_Verbose = 2,
};
extern RegAllocDebugLevel_t DEBUG_RA;
#endif