6953952: collectedHeap.cpp should use #ifdef _LP64 not LP64

Changed LP64 to _LP64 in collectedHeap.cpp.

Reviewed-by: kvn, jcoomes
This commit is contained in:
Y. Srinivas Ramakrishna 2010-05-19 16:05:47 -07:00
parent 51c1f35548
commit ed25c962e1

View file

@ -309,7 +309,7 @@ void CollectedHeap::fill_with_objects(HeapWord* start, size_t words, bool zap)
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.