Displaying 1 result from an estimated 1 matches for "1039961".
Did you mean:
1034961
2014 Aug 18
7
[LLVMdev] [RFC] Removing static initializers for command line options
Today command line arguments in LLVM are global variables. An example argument from Scalarizer.cpp is:
static cl::opt<bool> ScalarizeLoadStore
("scalarize-load-store", cl::Hidden, cl::init(false),
cl::desc("Allow the scalarizer pass to scalarize loads and store"));
This poses a problem for clients of LLVM that aren’t traditional compilers (i.e. WebKit, and Mesa).