You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
The problem goes away when the body of main is changed to use the result of (1 / 0) (as opposed to discarding the result as above). For example -optimize emits correct bytecode for:
When compiled with
-optimize
the following program goes wrong:It swallows the
ArithmeticException
that the JVMS specifies should be thrown. The bytecode emitted is:The problem goes away when the body of
main
is changed to use the result of(1 / 0)
(as opposed to discarding the result as above). For example-optimize
emits correct bytecode for:Originally reported in https://groups.google.com/forum/#!searchin/akka-user/optimize/akka-user/r0Teq08f-YU/2Dfl1yQKbL0J
The text was updated successfully, but these errors were encountered: