Put small uninitialized data in .sbss, not .sdata
From-SVN: r24266
This commit is contained in:
parent
157131d73a
commit
a9aefc1e9a
|
@ -1,3 +1,8 @@
|
|||
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>
|
||||
|
||||
* cccp.c: Do not #include <sys/stat.h> here; this is already done
|
||||
|
|
|
@ -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); \
|
||||
|
|
Loading…
Reference in New Issue