hotspot/src/share/vm/c1/c1_Compilation.cpp
changeset 33160 c59f1676d27e
parent 29081 c61eb4914428
child 33451 0712796e4039
--- a/hotspot/src/share/vm/c1/c1_Compilation.cpp	Thu Oct 08 10:25:45 2015 +0000
+++ b/hotspot/src/share/vm/c1/c1_Compilation.cpp	Thu Oct 08 12:49:30 2015 -1000
@@ -325,7 +325,8 @@
                                         locs_buffer_size / sizeof(relocInfo));
   code->initialize_consts_size(Compilation::desired_max_constant_size());
   // Call stubs + two deopt handlers (regular and MH) + exception handler
-  int stub_size = (call_stub_estimate * LIR_Assembler::call_stub_size) +
+  int call_stub_size = LIR_Assembler::call_stub_size;
+  int stub_size = (call_stub_estimate * call_stub_size) +
                    LIR_Assembler::exception_handler_size +
                    (2 * LIR_Assembler::deopt_handler_size);
   if (stub_size >= code->insts_capacity()) return false;