|
|
| Bugzilla Link |
2231 |
| Resolution |
FIXED |
| Resolved on |
Jul 13, 2008 14:35 |
| Version |
unspecified |
| OS |
Linux |
| Reporter |
LLVM Bugzilla Contributor |
| CC |
@asl,@nlewycky |
Extended Description
If you run
opt -internalize -std-compile-opts
then internalize is run after the standard passes.
It would be convenient if it was run first. More
generally it would be nice if
opt -pass1 ... -passN -std-compile-opts -passN+1 ... -passM
would result in passes 1 .. N being run, then
the standard passes, then passes N+1 .. M.