mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-30 17:33:24 +00:00
Change debug info from #define to command line option
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@646 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4c3aaa4adb
commit
6edcad89e7
@ -1,10 +1,21 @@
|
||||
|
||||
#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
|
||||
|
||||
#define DEBUG_RA (0)
|
||||
enum RegAllocDebugLevel_t {
|
||||
RA_DEBUG_None = 0,
|
||||
RA_DEBUG_Normal = 1,
|
||||
RA_DEBUG_Verbose = 2,
|
||||
};
|
||||
|
||||
extern cl::Enum<RegAllocDebugLevel_t> DEBUG_RA;
|
||||
|
||||
#endif
|
||||
|
@ -1,10 +1,21 @@
|
||||
|
||||
#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
|
||||
|
||||
#define DEBUG_RA (0)
|
||||
enum RegAllocDebugLevel_t {
|
||||
RA_DEBUG_None = 0,
|
||||
RA_DEBUG_Normal = 1,
|
||||
RA_DEBUG_Verbose = 2,
|
||||
};
|
||||
|
||||
extern cl::Enum<RegAllocDebugLevel_t> DEBUG_RA;
|
||||
|
||||
#endif
|
||||
|
@ -1,10 +1,21 @@
|
||||
|
||||
#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
|
||||
|
||||
#define DEBUG_RA (0)
|
||||
enum RegAllocDebugLevel_t {
|
||||
RA_DEBUG_None = 0,
|
||||
RA_DEBUG_Normal = 1,
|
||||
RA_DEBUG_Verbose = 2,
|
||||
};
|
||||
|
||||
extern cl::Enum<RegAllocDebugLevel_t> DEBUG_RA;
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user