< prev index next >

src/hotspot/share/runtime/stackValue.cpp

Print this page

        

@@ -144,12 +144,16 @@
       union { intptr_t p; jint ji;} value;
       value.p = (intptr_t) CONST64(0xDEADDEAFDEADDEAF);
       value.ji = *(jint*)value_addr;
       return new StackValue(value.p);
     }
-    case Location::invalid:
+    case Location::invalid: {
       return new StackValue();
+    }
+    case Location::vector: {
+      ShouldNotReachHere(); // should be handled by Deoptimization::realloc_objects()
+    }
     default:
       ShouldNotReachHere();
     }
 
   } else if (sv->is_constant_int()) {
< prev index next >