mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
030d4ca8f4
llvm-svn: 646
22 lines
466 B
C
22 lines
466 B
C
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#ifndef REG_ALLOC_COMMON_H
|
|
#define REG_ALLOC_COMMON_H
|
|
|
|
// THIS IS NOW SPECIFIED VIA A COMMANDLINE ARGUMENT TO LLC
|
|
//
|
|
// 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 cl::Enum<RegAllocDebugLevel_t> DEBUG_RA;
|
|
|
|
#endif
|