hotspot/src/share/vm/runtime/javaCalls.cpp
changeset 46630 75aa3e39d02c
parent 46458 3c12af929e7d
child 46727 6e4a84748e2c
--- a/hotspot/src/share/vm/runtime/javaCalls.cpp	Wed Jul 05 11:03:19 2017 -0700
+++ b/hotspot/src/share/vm/runtime/javaCalls.cpp	Thu Jul 06 01:50:26 2017 +0200
@@ -172,9 +172,10 @@
     case T_ARRAY  : // fall through
     case T_OBJECT:  return T_OBJECT;
 #endif
+    default:
+      ShouldNotReachHere();
+      return T_ILLEGAL;
   }
-  ShouldNotReachHere();
-  return T_ILLEGAL;
 }
 
 // ============ Virtual calls ============