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:
Richard Earnshaw 2002-09-23 15:14:14 +00:00 committed by Richard Earnshaw
parent 46c83bced1
commit 97d48e5ad4
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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)