diff options
| author | Alexander Kabaev <kan@FreeBSD.org> | 2002-09-01 21:09:26 +0000 |
|---|---|---|
| committer | Alexander Kabaev <kan@FreeBSD.org> | 2002-09-01 21:09:26 +0000 |
| commit | 35d17d433ca99907be3b2ef6a559bb40df7288bd (patch) | |
| tree | eb4a303a3252dbb91ebdf5bc14a5ed593940badf | |
| parent | 2556bafc14bc3fd55675c1b734d3296946bf520a (diff) | |
Notes
| -rw-r--r-- | contrib/gcc/config/alpha/elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/config/alpha/elf.h b/contrib/gcc/config/alpha/elf.h index 138acbb3ab1a..99ea1ea31115 100644 --- a/contrib/gcc/config/alpha/elf.h +++ b/contrib/gcc/config/alpha/elf.h @@ -167,7 +167,7 @@ do { \ } \ ASM_OUTPUT_ALIGN ((FILE), exact_log2((ALIGN) / BITS_PER_UNIT)); \ ASM_OUTPUT_LABEL(FILE, NAME); \ - ASM_OUTPUT_SKIP((FILE), (SIZE)); \ + ASM_OUTPUT_SKIP((FILE), (SIZE) ? (SIZE) : 1); \ } while (0) /* This says how to output assembler code to declare an |
