Commit 97d48e5a by Richard Earnshaw Committed by Richard Earnshaw

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
parent 46c83bce
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> 2002-09-23 Mark Mitchell <mark@codesourcery.com>
* c-common.h (flag_abi_version): Fix typo in comment. * c-common.h (flag_abi_version): Fix typo in comment.
......
...@@ -82,7 +82,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -82,7 +82,7 @@ Boston, MA 02111-1307, USA. */
\ \
ASM_OUTPUT_ALIGN (FILE, floor_log2 (ALIGN / BITS_PER_UNIT)); \ ASM_OUTPUT_ALIGN (FILE, floor_log2 (ALIGN / BITS_PER_UNIT)); \
ASM_OUTPUT_LABEL (FILE, NAME); \ 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) while (0)
......
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