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.Dismiss alert
turns out this is a fairly simple tableswitch generated byte-code problem : case 2; case 4 -> was considered consecutive transforming to a Java switch with an incorrect jump for 4
Environment
Noticed this with the verifier being switched off. Happens in 9.1.5/9.1.6 as well as on master.
JAVA_OPTS=-noverify
Somehow I am failing to reproduce in isolation, even as I try with a empty Rails app (will try more).
Was able to cause a JVM segfault running tests as well as with
rake assets:precompile
.Problematic piece (from sass gem) :
Expected Behavior
Thinking JRuby might want to set
-noverify
for some of its jit test suite - thus JIT compiler issues would be caught earlier, make sense?Full Log: for the problematic (`Sass::Script::Functions.rgba`) method
The text was updated successfully, but these errors were encountered: