diff src/share/vm/compiler/compileBroker.cpp @ 14391:d2907f74462e

8016586: PPC64 (part 3): basic changes for PPC64 Summary: added #includes needed for ppc64 port. Renamed _MODEL_ppc to _MODEL_ppc_32 and renamed corresponding old _ppc files to _ppc_32. Reviewed-by: dholmes, kvn
author goetz
date Thu, 20 Jun 2013 16:30:44 -0700
parents 6f3fd5150b67
children b5c8a61d7fa0
line wrap: on
line diff
--- a/src/share/vm/compiler/compileBroker.cpp	Wed Jun 19 12:29:30 2013 +0200
+++ b/src/share/vm/compiler/compileBroker.cpp	Thu Jun 20 16:30:44 2013 -0700
@@ -958,7 +958,7 @@
 // Initialize the compilation queue
 void CompileBroker::init_compiler_threads(int c1_compiler_count, int c2_compiler_count) {
   EXCEPTION_MARK;
-#if !defined(ZERO) && !defined(SHARK)
+#if !defined(ZERO) && !defined(SHARK) && !defined(PPC64)
   assert(c2_compiler_count > 0 || c1_compiler_count > 0, "No compilers?");
 #endif // !ZERO && !SHARK
   if (c2_compiler_count > 0) {