6953952: collectedHeap.cpp should use #ifdef _LP64 not LP64
authorysr
Wed, 19 May 2010 16:05:47 -0700
changeset 5544 de5f430a289c
parent 5543 95c4cdd5b505
child 5545 c531522ec99a
6953952: collectedHeap.cpp should use #ifdef _LP64 not LP64 Summary: Changed LP64 to _LP64 in collectedHeap.cpp. Reviewed-by: kvn, jcoomes
hotspot/src/share/vm/gc_interface/collectedHeap.cpp
--- a/hotspot/src/share/vm/gc_interface/collectedHeap.cpp	Wed May 19 10:37:05 2010 -0700
+++ b/hotspot/src/share/vm/gc_interface/collectedHeap.cpp	Wed May 19 16:05:47 2010 -0700
@@ -309,7 +309,7 @@
   DEBUG_ONLY(fill_args_check(start, words);)
   HandleMark hm;  // Free handles before leaving.
 
-#ifdef LP64
+#ifdef _LP64
   // A single array can fill ~8G, so multiple objects are needed only in 64-bit.
   // First fill with arrays, ensuring that any remaining space is big enough to
   // fill.  The remainder is filled with a single object.