diff src/share/vm/opto/callGenerator.cpp @ 23822:626f594dffa6

8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux. Reviewed-by: stuefe, coleenp, roland
author csahu
date Tue, 01 Mar 2016 12:50:37 +0530
parents 55c8792fe214
children f13e777eb255
line wrap: on
line diff
--- a/src/share/vm/opto/callGenerator.cpp	Thu Feb 18 16:15:28 2016 +0100
+++ b/src/share/vm/opto/callGenerator.cpp	Tue Mar 01 12:50:37 2016 +0530
@@ -658,7 +658,7 @@
                                            &exact_receiver);
 
   SafePointNode* slow_map = NULL;
-  JVMState* slow_jvms;
+  JVMState* slow_jvms = NULL;
   { PreserveJVMState pjvms(&kit);
     kit.set_control(slow_ctl);
     if (!kit.stopped()) {