mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-23 22:23:00 +00:00
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -21,13 +21,16 @@ using std::vector;
|
||||
|
||||
SchedDebugLevel_t SchedDebugLevel;
|
||||
|
||||
static cl::Enum<enum SchedDebugLevel_t> Opt(SchedDebugLevel,"dsched",cl::Hidden,
|
||||
"enable instruction scheduling debugging information",
|
||||
clEnumValN(Sched_NoDebugInfo, "n", "disable debug output"),
|
||||
clEnumValN(Sched_Disable, "off", "disable instruction scheduling"),
|
||||
clEnumValN(Sched_PrintMachineCode, "y", "print machine code after scheduling"),
|
||||
clEnumValN(Sched_PrintSchedTrace, "t", "print trace of scheduling actions"),
|
||||
clEnumValN(Sched_PrintSchedGraphs, "g", "print scheduling graphs"), 0);
|
||||
static cl::opt<SchedDebugLevel_t, true>
|
||||
SDL_opt("dsched", cl::Hidden, cl::location(SchedDebugLevel),
|
||||
cl::desc("enable instruction scheduling debugging information"),
|
||||
cl::values(
|
||||
clEnumValN(Sched_NoDebugInfo, "n", "disable debug output"),
|
||||
clEnumValN(Sched_Disable, "off", "disable instruction scheduling"),
|
||||
clEnumValN(Sched_PrintMachineCode, "y", "print machine code after scheduling"),
|
||||
clEnumValN(Sched_PrintSchedTrace, "t", "print trace of scheduling actions"),
|
||||
clEnumValN(Sched_PrintSchedGraphs, "g", "print scheduling graphs"),
|
||||
0));
|
||||
|
||||
|
||||
//************************* Internal Data Types *****************************/
|
||||
|
||||
Reference in New Issue
Block a user