# HG changeset patch # User Doug Simon # Date 1353015232 -3600 # Node ID a0f4001cf53cc0d7f79af3472414f5169cd5bc44 # Parent 0e20ad1ea98bc8ff50976dc6efb18a61a6d8d8c2 disabled OSR compilation for Graal until dead-lock issue is resolved diff -r 0e20ad1ea98b -r a0f4001cf53c src/share/vm/graal/graalCompiler.hpp --- a/src/share/vm/graal/graalCompiler.hpp Thu Nov 15 21:32:23 2012 +0100 +++ b/src/share/vm/graal/graalCompiler.hpp Thu Nov 15 22:33:52 2012 +0100 @@ -50,7 +50,7 @@ // Native / OSR not supported virtual bool supports_native() { return true; } - virtual bool supports_osr () { return true; } + virtual bool supports_osr () { return false; } // Pretend to be C1 bool is_c1 () { return true; }