Displaying 1 result from an estimated 1 matches for "regallocdebugsimplify".
2007 Oct 15
2
[LLVMdev] cl::opt Ideas
...bout. 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 want is something like named alternatives that allows
multiple values to be specialized, so the...