From: Michael Meissner Date: Fri, 11 Dec 1998 11:20:41 +0000 (+0000) Subject: Put small uninitialized data in .sbss, not .sdata X-Git-Tag: prereleases/libgcj-0.1~1674 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a9aefc1e9a9f455e44c04124b10c1ad21b26c3b7;p=thirdparty%2Fgcc.git Put small uninitialized data in .sbss, not .sdata From-SVN: r24266 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c3bfe0466cb..a3896efeb92d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +1998-12-11 Michael Meissner + + * rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Put small data in the + .sbss section, not .sdata. + 1998-12-11 Manfred Hollstein * cccp.c: Do not #include here; this is already done diff --git a/gcc/config/rs6000/sysv4.h b/gcc/config/rs6000/sysv4.h index 2b7e1ed4b485..7184555dbda2 100644 --- a/gcc/config/rs6000/sysv4.h +++ b/gcc/config/rs6000/sysv4.h @@ -710,7 +710,7 @@ do { \ if (rs6000_sdata != SDATA_NONE && (SIZE) > 0 \ && (SIZE) <= g_switch_value) \ { \ - sdata_section (); \ + sbss_section (); \ ASM_OUTPUT_ALIGN (FILE, exact_log2 (ALIGN / BITS_PER_UNIT)); \ ASM_OUTPUT_LABEL (FILE, NAME); \ ASM_OUTPUT_SKIP (FILE, SIZE); \