llvm-6502/include/llvm/CodeGen/RegAllocCommon.h
Chris Lattner cee8f9ae67 Create a new #include "Support/..." directory structure to move things
from "llvm/Support/..." that are not llvm dependant.

Move files and fix #includes


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1400 91177308-0d34-0410-b5e6-96231b3b80d8
2001-11-27 00:03:19 +00:00

22 lines
461 B
C

#include "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