Skip to content
Permalink
Browse files
Interpreter: Disable exception verification in non-debug modes
  • Loading branch information
subbuss committed Jan 24, 2015
1 parent bbb7bbe commit 0aef21d
Showing 1 changed file with 3 additions and 1 deletion.
@@ -574,7 +574,9 @@ private static IRubyObject interpret(ThreadContext context, IRubyObject self,
break;
}
} catch (Throwable t) {
extractToMethodToAvoidC2Crash(context, instr, t);
if (debug) {
extractToMethodToAvoidC2Crash(context, instr, t);
}

ipc = instr.getRPC();
if (debug) {

0 comments on commit 0aef21d

Please sign in to comment.