--- old/src/share/vm/c1/c1_Compiler.cpp 2016-02-10 10:49:51.397356782 +0100 +++ new/src/share/vm/c1/c1_Compiler.cpp 2016-02-10 10:49:51.289356778 +0100 @@ -240,7 +240,7 @@ return true; } -void Compiler::compile_method(ciEnv* env, ciMethod* method, int entry_bci, DirectiveSet* directive) { +void Compiler::compile_method(ciEnv* env, ciMethod* method, int entry_bci) { BufferBlob* buffer_blob = CompilerThread::current()->get_buffer_blob(); assert(buffer_blob != NULL, "Must exist"); // invoke compilation @@ -249,7 +249,7 @@ // of Compilation to occur before we release the any // competing compiler thread ResourceMark rm; - Compilation c(this, env, method, entry_bci, buffer_blob, directive); + Compilation c(this, env, method, entry_bci, buffer_blob); } }