diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-30 12:04:01 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-30 12:04:01 +0000 |
commit | 42118a501f0175d77263d1030f03e32fb3cceeb1 (patch) | |
tree | 692d46976d4972262e2bb52887d1156ee024e5fd /gcc/config/arm/aout.h | |
parent | 9d3f39fd85ddfa142ad2cdcf43a4433383b8c79d (diff) | |
download | gcc-42118a501f0175d77263d1030f03e32fb3cceeb1.tar.gz |
Sat May 29 19:08:10 1999 Philip Blundell <philb@gnu.org>
* config/arm/aout.h (ASM_OUTPUT_ALIGN): Only define if not already
defined.
* config/arm/elf.h (ASM_OUTPUT_ALIGN): Define.
(MAX_OFILE_ALIGNMENT): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27246 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arm/aout.h')
-rw-r--r-- | gcc/config/arm/aout.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/arm/aout.h b/gcc/config/arm/aout.h index 2e341b768a6..df1694aa9ca 100644 --- a/gcc/config/arm/aout.h +++ b/gcc/config/arm/aout.h @@ -236,6 +236,7 @@ do { char dstr[30]; \ fprintf (STREAM, "\t.space\t%d\n", NBYTES) /* Align output to a power of two. Horrible /bin/as. */ +#ifndef ASM_OUTPUT_ALIGN #define ASM_OUTPUT_ALIGN(STREAM, POWER) \ do \ { \ @@ -245,7 +246,9 @@ do { char dstr[30]; \ fprintf (STREAM, "\t.even\n"); \ else if (amount != 1) \ fprintf (STREAM, "\t.align\t%d\n", amount - 4); \ - } while (0) + } \ + while (0) +#endif /* Output a common block */ #ifndef ASM_OUTPUT_COMMON |