< prev index next >

src/hotspot/share/gc/g1/g1HeapRegionAttr.hpp

Print this page
rev 59103 : imported patch hotspot

@@ -32,17 +32,12 @@
 // lookups for that information all over the place.
 struct G1HeapRegionAttr {
 public:
   // We use different types to represent the state value depending on platform as
   // some have issues loading parts of words.
-#ifdef SPARC
-  typedef int32_t region_type_t;
-  typedef uint32_t needs_remset_update_t;
-#else
   typedef int8_t region_type_t;
   typedef uint8_t needs_remset_update_t;
-#endif
 
 private:
   needs_remset_update_t _needs_remset_update;
   region_type_t _type;
 
< prev index next >