| Issue | 125983 |
|---|---|
| Summary | Change all cl::opt<> in .cpp files to static |
| Labels | |
| Assignees | |
| Reporter | jurahul |
Most (if not all) of global variables for command line options need to be defined as static. This is currently not the case. To find candidates use:git grep "cl::opt" *.cpp | grep -v static git grep "cl::OptionCategory" *.cpp | grep -v static
_______________________________________________ llvm-bugs mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
