varasm.c (asm_output_bss): Always output one byte.

* varasm.c (asm_output_bss): Always output one byte.
        * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.

From-SVN: r53850
This commit is contained in:
Richard Henderson 2002-05-24 12:22:11 -07:00 committed by Richard Henderson
parent 52fc15ab5e
commit 37057f6078
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-05-24 Richard Henderson <rth@redhat.com>
* varasm.c (asm_output_bss): Always output one byte.
* config/alpha/elf.h (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
2002-05-24 Neil Booth <neil@daikokuya.demon.co.uk>
PR preprocessor/6780

View File

@ -165,7 +165,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

View File

@ -516,7 +516,7 @@ asm_output_bss (file, decl, name, size, rounded)
/* Standard thing is just output label for the object. */
ASM_OUTPUT_LABEL (file, name);
#endif /* ASM_DECLARE_OBJECT_NAME */
ASM_OUTPUT_SKIP (file, rounded);
ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
}
#endif