mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Rename argument strings of codegen passes to avoid collisions with command line
options. This commit changes the command line arguments (PassInfo::PassArgument) of two passes, MachineFunctionPrinter and MachineScheduler, to avoid collisions with command line options that have the same argument strings. This bug manifests when the PassList construct (defined in opt.cpp) is used in a tool that links with codegen passes. To reproduce the bug, paste the following lines into llc.cpp and run llc. #include "llvm/IR/LegacyPassNameParser.h" static llvm:🆑:list<const llvm::PassInfo*, bool, llvm::PassNameParser> PassList(llvm:🆑:desc("Optimizations available:")); rdar://problem/19212448 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224186 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -52,7 +52,7 @@ char MachineFunctionPrinterPass::ID = 0;
|
||||
}
|
||||
|
||||
char &llvm::MachineFunctionPrinterPassID = MachineFunctionPrinterPass::ID;
|
||||
INITIALIZE_PASS(MachineFunctionPrinterPass, "print-machineinstrs",
|
||||
INITIALIZE_PASS(MachineFunctionPrinterPass, "machineinstr-printer",
|
||||
"Machine Function Printer", false, false)
|
||||
|
||||
namespace llvm {
|
||||
|
Reference in New Issue
Block a user