6953952: collectedHeap.cpp should use #ifdef _LP64 not LP64
Summary: Changed LP64 to _LP64 in collectedHeap.cpp.
Reviewed-by: kvn, jcoomes
--- 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.