Displaying 1 result from an estimated 1 matches for "regallocdebugcolor".
2007 Oct 15
2
[LLVMdev] cl::opt Ideas
...I have to prefix each option with something
like RegallocDebug so users know what it's about. For example:
llvm::cl::bits<coloring_debug_flags>
ColoringDebugBits(llvm::cl::desc("Regalloc Debug Flags:"),
llvm::cl::values(
clEnumVal(RegallocDebugColoring, "Output while
coloring"),
clEnumVal(RegallocDebugSimplify, "Output while
simplifying"));
<And associated enums, etc.>
-RegallocDebugColoring -RegallocDebugSimplify
It's a little tedious to do this for each of the options.
What I really w...