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

Wed, 19 May 2010 16:05:47 -0700

author
ysr
date
Wed, 19 May 2010 16:05:47 -0700
changeset 1904
1634cec09505
parent 1903
15190cbcabe9
child 1905
c9a07413e82b

6953952: collectedHeap.cpp should use #ifdef _LP64 not LP64
Summary: Changed LP64 to _LP64 in collectedHeap.cpp.
Reviewed-by: kvn, jcoomes

src/share/vm/gc_interface/collectedHeap.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/gc_interface/collectedHeap.cpp	Wed May 19 10:37:05 2010 -0700
     1.2 +++ b/src/share/vm/gc_interface/collectedHeap.cpp	Wed May 19 16:05:47 2010 -0700
     1.3 @@ -309,7 +309,7 @@
     1.4    DEBUG_ONLY(fill_args_check(start, words);)
     1.5    HandleMark hm;  // Free handles before leaving.
     1.6  
     1.7 -#ifdef LP64
     1.8 +#ifdef _LP64
     1.9    // A single array can fill ~8G, so multiple objects are needed only in 64-bit.
    1.10    // First fill with arrays, ensuring that any remaining space is big enough to
    1.11    // fill.  The remainder is filled with a single object.

mercurial