Commit a9aefc1e by Michael Meissner Committed by Michael Meissner

Put small uninitialized data in .sbss, not .sdata

From-SVN: r24266
parent 157131d7
1998-12-11 Michael Meissner <meissner@cygnus.com>
* rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Put small data in the
.sbss section, not .sdata.
1998-12-11 Manfred Hollstein <manfred@s-direktnet.de> 1998-12-11 Manfred Hollstein <manfred@s-direktnet.de>
* cccp.c: Do not #include <sys/stat.h> here; this is already done * cccp.c: Do not #include <sys/stat.h> here; this is already done
......
...@@ -710,7 +710,7 @@ do { \ ...@@ -710,7 +710,7 @@ do { \
if (rs6000_sdata != SDATA_NONE && (SIZE) > 0 \ if (rs6000_sdata != SDATA_NONE && (SIZE) > 0 \
&& (SIZE) <= g_switch_value) \ && (SIZE) <= g_switch_value) \
{ \ { \
sdata_section (); \ sbss_section (); \
ASM_OUTPUT_ALIGN (FILE, exact_log2 (ALIGN / BITS_PER_UNIT)); \ ASM_OUTPUT_ALIGN (FILE, exact_log2 (ALIGN / BITS_PER_UNIT)); \
ASM_OUTPUT_LABEL (FILE, NAME); \ ASM_OUTPUT_LABEL (FILE, NAME); \
ASM_OUTPUT_SKIP (FILE, SIZE); \ ASM_OUTPUT_SKIP (FILE, SIZE); \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment