< prev index next >

src/hotspot/cpu/sparc/memset_with_concurrent_readers_sparc.cpp

Print this page

        

@@ -29,12 +29,10 @@
 #include "utilities/align.hpp"
 #include "utilities/debug.hpp"
 #include "utilities/globalDefinitions.hpp"
 #include "utilities/macros.hpp"
 
-#if INCLUDE_ALL_GCS
-
 // An implementation of memset, for use when there may be concurrent
 // readers of the region being stored into.
 //
 // We can't use the standard library memset if it is implemented using
 // block initializing stores.  Doing so can result in concurrent readers

@@ -154,7 +152,5 @@
     to = aligned_end;           // setup for suffix
   }
   // Fill any partial word suffix.  Also the prefix if size < BytesPerWord.
   fill_subword(to, end, value);
 }
-
-#endif // INCLUDE_ALL_GCS
< prev index next >