hotspot/src/share/vm/c1/c1_Compilation.hpp
changeset 40071 53e12df44b7b
parent 38031 e0b822facc03
child 46526 519f1fbec7af
--- a/hotspot/src/share/vm/c1/c1_Compilation.hpp	Thu Jul 14 20:11:55 2016 +0300
+++ b/hotspot/src/share/vm/c1/c1_Compilation.hpp	Thu Jun 23 22:33:46 2016 +0200
@@ -194,12 +194,7 @@
   const char* bailout_msg() const                { return _bailout_msg; }
 
   static int desired_max_code_buffer_size() {
-#ifndef PPC32
-    return (int) NMethodSizeLimit;  // default 256K or 512K
-#else
-    // conditional branches on PPC are restricted to 16 bit signed
-    return MIN2((unsigned int)NMethodSizeLimit,32*K);
-#endif
+    return (int)NMethodSizeLimit;  // default 64K
   }
   static int desired_max_constant_size() {
     return desired_max_code_buffer_size() / 10;