mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
2182c785c2
* Reduce number of #includes, sometimes drastically (LiveRangeInfo.h lost _7_) * Move instrIsFeasible() from InstrScheduling.h to SchedPriorities.h * Delete blank lines at end of files git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1672 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
400 B
C
21 lines
400 B
C
|
|
|
|
#ifndef REG_ALLOC_COMMON_H
|
|
#define REG_ALLOC_COMMON_H
|
|
|
|
#include "Support/CommandLine.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 cl::Enum<RegAllocDebugLevel_t> DEBUG_RA;
|
|
|
|
#endif
|