diff options
| author | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-23 15:14:14 +0000 |
|---|---|---|
| committer | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-23 15:14:14 +0000 |
| commit | c936d1c74c0042dc2f5e8d5f19f770302bc7c469 (patch) | |
| tree | 869e87838db1d5167f1c52b66468087647ff4881 | |
| parent | a9aff73d3f821b35d099e987413ffcf2a5402347 (diff) | |
| download | ppe42-gcc-c936d1c74c0042dc2f5e8d5f19f770302bc7c469.tar.gz ppe42-gcc-c936d1c74c0042dc2f5e8d5f19f770302bc7c469.zip | |
* arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Always allocate
at least one byte of space.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57441 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/arm/unknown-elf.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7ac371b7f1f..50a94b3b858 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/arm/unknown-elf.h b/gcc/config/arm/unknown-elf.h index ade3f488913..7f9211b18c0 100644 --- a/gcc/config/arm/unknown-elf.h +++ b/gcc/config/arm/unknown-elf.h @@ -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) |

