mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-30 21:06:03 +08:00
unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Always allocate at least one byte of space.
* arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Always allocate at least one byte of space. From-SVN: r57441
This commit is contained in:
parent
46c83bced1
commit
97d48e5ad4
@ -1,3 +1,8 @@
|
||||
2002-09-23 Richard Earnshaw <rearnsha@arm.com>
|
||||
|
||||
* arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Always allocate
|
||||
at least one byte of space.
|
||||
|
||||
2002-09-23 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* c-common.h (flag_abi_version): Fix typo in comment.
|
||||
|
@ -82,7 +82,7 @@ Boston, MA 02111-1307, USA. */
|
||||
\
|
||||
ASM_OUTPUT_ALIGN (FILE, floor_log2 (ALIGN / BITS_PER_UNIT)); \
|
||||
ASM_OUTPUT_LABEL (FILE, NAME); \
|
||||
fprintf (FILE, "\t.space\t%d\n", SIZE); \
|
||||
fprintf (FILE, "\t.space\t%d\n", SIZE ? SIZE : 1); \
|
||||
} \
|
||||
while (0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user