# HG changeset patch # User Thomas Wuerthinger # Date 1359644187 -3600 # Node ID 64f41765b3d2ede9cdccb423231abf3f4399f441 # Parent 3ac7d10a6572d6f1e1ec1806e39589d1fcfcb78c Merge fix. diff -r 3ac7d10a6572 -r 64f41765b3d2 src/share/vm/compiler/abstractCompiler.hpp --- a/src/share/vm/compiler/abstractCompiler.hpp Thu Jan 31 15:42:25 2013 +0100 +++ b/src/share/vm/compiler/abstractCompiler.hpp Thu Jan 31 15:56:27 2013 +0100 @@ -76,6 +76,7 @@ virtual bool supports_native() { return true; } virtual bool supports_osr () { return true; } + virtual bool can_compile_method(methodHandle method) { return true; } bool is_c1 () { return _type == c1; } bool is_c2 () { return _type == c2; } bool is_shark() { return _type == shark; }