diff src/share/vm/prims/jvmtiTrace.hpp @ 8721:47bc9800972c

8006498: #if <symbol> is wrong in the code. Summary: ASSERT and other symbols used incorrectly with #if are supposed to be defined or not. Reviewed-by: dholmes, mikael
author jprovino
date Wed, 06 Mar 2013 13:46:55 -0500
parents f95d63e2154a
children de6a9e811145
line wrap: on
line diff
--- a/src/share/vm/prims/jvmtiTrace.hpp	Wed Mar 06 13:38:17 2013 -0500
+++ b/src/share/vm/prims/jvmtiTrace.hpp	Wed Mar 06 13:46:55 2013 -0500
@@ -43,10 +43,10 @@
 
 // Support tracing except in product build on the client compiler
 #ifndef PRODUCT
-#define JVMTI_TRACE 1
+#define JVMTI_TRACE
 #else
 #ifdef COMPILER2
-#define JVMTI_TRACE 1
+#define JVMTI_TRACE
 #endif
 #endif