1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

IA64 compat

llvm-svn: 14867
This commit is contained in:
Chris Lattner 2004-07-16 00:08:28 +00:00
parent c014005d53
commit 9b03d18729
6 changed files with 7 additions and 6 deletions

View File

@ -57,7 +57,7 @@ namespace {
clEnumValN(Select_DebugInstTrees, "i", clEnumValN(Select_DebugInstTrees, "i",
"print debugging info for instruction selection"), "print debugging info for instruction selection"),
clEnumValN(Select_DebugBurgTrees, "b", "print burg trees"), clEnumValN(Select_DebugBurgTrees, "b", "print burg trees"),
0)); clEnumValEnd));
//===--------------------------------------------------------------------===// //===--------------------------------------------------------------------===//

View File

@ -40,7 +40,7 @@ clEnumValN(LV_DEBUG_Normal , "y", "enable debug output"),
clEnumValN(LV_DEBUG_Instr, "i", "print live-var sets before/after " clEnumValN(LV_DEBUG_Instr, "i", "print live-var sets before/after "
"every machine instrn"), "every machine instrn"),
clEnumValN(LV_DEBUG_Verbose, "v", "print def, use sets for every instrn also"), clEnumValN(LV_DEBUG_Verbose, "v", "print def, use sets for every instrn also"),
0)); clEnumValEnd));

View File

@ -63,7 +63,7 @@ DRA_opt("dregalloc", cl::Hidden, cl::location(DEBUG_RA),
clEnumValN(RA_DEBUG_Interference,"ig","debug output for interference graphs"), clEnumValN(RA_DEBUG_Interference,"ig","debug output for interference graphs"),
clEnumValN(RA_DEBUG_LiveRanges , "lr","debug output for live ranges"), clEnumValN(RA_DEBUG_LiveRanges , "lr","debug output for live ranges"),
clEnumValN(RA_DEBUG_Verbose, "v", "extra debug output"), clEnumValN(RA_DEBUG_Verbose, "v", "extra debug output"),
0)); clEnumValEnd));
/// The reoptimizer wants to be able to grovel through the register /// The reoptimizer wants to be able to grovel through the register
/// allocator's state after it has done its job. This is a hack. /// allocator's state after it has done its job. This is a hack.

View File

@ -52,7 +52,7 @@ PassDebugging("debug-pass", cl::Hidden,
clEnumVal(Structure , "print pass structure before run()"), clEnumVal(Structure , "print pass structure before run()"),
clEnumVal(Executions, "print pass name before it is executed"), clEnumVal(Executions, "print pass name before it is executed"),
clEnumVal(Details , "print pass details when it is executed"), clEnumVal(Details , "print pass details when it is executed"),
0)); clEnumValEnd));
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// PMDebug class - a set of debugging functions, that are not to be // PMDebug class - a set of debugging functions, that are not to be

View File

@ -38,7 +38,7 @@ namespace {
clEnumValN(RunJIT, "run-jit", "Execute with JIT"), clEnumValN(RunJIT, "run-jit", "Execute with JIT"),
clEnumValN(RunLLC, "run-llc", "Compile with LLC"), clEnumValN(RunLLC, "run-llc", "Compile with LLC"),
clEnumValN(RunCBE, "run-cbe", "Compile with CBE"), clEnumValN(RunCBE, "run-cbe", "Compile with CBE"),
0), clEnumValEnd),
cl::init(AutoPick)); cl::init(AutoPick));
cl::opt<bool> cl::opt<bool>

View File

@ -35,7 +35,8 @@ namespace {
cl::desc("Specify output format"), cl::desc("Specify output format"),
cl::values(clEnumVal(bsd, "BSD format"), cl::values(clEnumVal(bsd, "BSD format"),
clEnumVal(sysv, "System V format"), clEnumVal(sysv, "System V format"),
clEnumVal(posix, "POSIX.2 format"), 0), cl::init(bsd)); clEnumVal(posix, "POSIX.2 format"),
clEnumValEnd), cl::init(bsd));
cl::alias OutputFormat2("f", cl::desc("Alias for --format"), cl::alias OutputFormat2("f", cl::desc("Alias for --format"),
cl::aliasopt(OutputFormat)); cl::aliasopt(OutputFormat));