| Issue |
53005
|
| Summary |
LLVM 13.0.0 'opt' tool does not recognize '-print-memoryssa' command
|
| Labels |
|
| Assignees |
|
| Reporter |
adriaanjacobs
|
As stated in the title.
```
$ ./opt --version
LLVM (http://llvm.org/):
LLVM version 13.0.0
Optimized build.
Default target: x86_64-unknown-linux-gnu
Host CPU: znver1
$ ./opt --print-memoryssa ../../mpk_dfi/test/nginx.ll
WARNING: You're attempting to print out a bitcode file.
This is inadvisable as it may cause display problems. If
you REALLY want to taste LLVM bitcode first-hand, you
can force output with the `-f' option.
./opt: unknown pass name 'print-memoryssa'
$ ./opt -print-memoryssa ../../mpk_dfi/test/nginx.ll
WARNING: You're attempting to print out a bitcode file.
This is inadvisable as it may cause display problems. If
you REALLY want to taste LLVM bitcode first-hand, you
can force output with the `-f' option.
./opt: unknown pass name 'print-memoryssa'
```
opt-12 does recognize these options. In opt 13, they are still listed under the `-help` output:
```
adriaan@officeboi ~/p/h/l/bin> ./opt --version
LLVM (http://llvm.org/):
LLVM version 13.0.0
Optimized build.
Default target: x86_64-unknown-linux-gnu
Host CPU: znver1
adriaan@officeboi ~/p/h/l/bin> ./opt -help | grep print-memoryssa
--print-memoryssa - Memory SSA Printer
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs