diff src/share/vm/graal/graalRuntime.cpp @ 9581:d84ea522800e

replaced arithmetic_[fd]rem stubs with inline compiled code (GRAAL-81)
author Doug Simon <doug.simon@oracle.com>
date Mon, 06 May 2013 22:07:48 +0200
parents ffd3d85e055f
children db2125285960
line wrap: on
line diff
--- a/src/share/vm/graal/graalRuntime.cpp	Mon May 06 21:00:20 2013 +0200
+++ b/src/share/vm/graal/graalRuntime.cpp	Mon May 06 22:07:48 2013 +0200
@@ -125,15 +125,7 @@
 
 #ifdef ASSERT
   // Make sure that stubs that need oopmaps have them
-  switch (id) {
-    // These stubs don't need to have an oopmap
-    case arithmetic_frem_id:
-    case arithmetic_drem_id:
-      break;
-    // All other stubs should have oopmaps
-    default:
-      assert(oop_maps != NULL, "must have an oopmap");
-  }
+  assert(oop_maps != NULL, "must have an oopmap");
 #endif
 
   // align so printing shows nop's instead of random code at the end (SimpleStubs are aligned)