opt -analyze

When the -analyze option is passed to opt, the print() function is
called on each pass that opt executes, but no bytecode is generated. Is
there a way to get opt to call the print() function on each pass that it
executes *and* produce bytecode.

Thanks,
Ryan

Invoke it twice, once with -analyze and one without? :slight_smile:

-Chris