comparison src/share/vm/graal/graalCompiler.cpp @ 18144:70077134cabc

graalCompiler: remove unnecessary HandleMark.
author Bernhard Urban <bernhard.urban@jku.at>
date Tue, 21 Oct 2014 16:43:14 +0200
parents 6a2f814224b1
children 9bb816169777
comparison
equal deleted inserted replaced
18143:0e1c92b8b267 18144:70077134cabc
53 if (buffer_blob == NULL) { 53 if (buffer_blob == NULL) {
54 set_state(failed); 54 set_state(failed);
55 } else { 55 } else {
56 set_state(initialized); 56 set_state(initialized);
57 } 57 }
58 58 // Graal is considered as application code so we need to
59 { 59 // stop the VM deferring compilation now.
60 HandleMark hm; 60 CompilationPolicy::completed_vm_startup();
61
62 // Graal is considered as application code so we need to
63 // stop the VM deferring compilation now.
64 CompilationPolicy::completed_vm_startup();
65 }
66 #endif // COMPILERGRAAL 61 #endif // COMPILERGRAAL
67 } 62 }
68 63
69 #ifdef COMPILERGRAAL 64 #ifdef COMPILERGRAAL
70 void GraalCompiler::bootstrap() { 65 void GraalCompiler::bootstrap() {