mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 14:37:30 +08:00
* alpha/vms.h (COMMON_ASM_OP, ASM_OUTPUT_ALIGNED_COMMON): Define.
From-SVN: r19699
This commit is contained in:
parent
a688e0b7d3
commit
1478d88a8c
@ -1,3 +1,7 @@
|
||||
Tue May 12 10:27:54 1998 Klaus Kaempf <kkaempf@progis.de>
|
||||
|
||||
* alpha/vms.h (COMMON_ASM_OP, ASM_OUTPUT_ALIGNED_COMMON): Define.
|
||||
|
||||
Tue May 12 11:44:14 1998 Gavin Koch <gavin@cygnus.com>
|
||||
|
||||
* config/mips/mips.h (ASM_OUTPUT_ALIGN): Remove trailing semi-colon.
|
||||
|
@ -343,6 +343,19 @@ literals_section () \
|
||||
#define ASM_OUTPUT_CASE_LABEL(FILE,PREFIX,NUM,TABLEINSN) \
|
||||
{ ASM_OUTPUT_ALIGN (FILE, 3); ASM_OUTPUT_INTERNAL_LABEL (FILE, PREFIX, NUM); }
|
||||
|
||||
/* This says how to output assembler code to declare an
|
||||
uninitialized external linkage data object. */
|
||||
|
||||
#define COMMON_ASM_OP ".comm"
|
||||
|
||||
#undef ASM_OUTPUT_ALIGNED_COMMON
|
||||
#define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
|
||||
do { \
|
||||
fprintf ((FILE), "\t%s\t", COMMON_ASM_OP); \
|
||||
assemble_name ((FILE), (NAME)); \
|
||||
fprintf ((FILE), ",%u,%u\n", (SIZE), (ALIGN) / BITS_PER_UNIT); \
|
||||
} while (0)
|
||||
|
||||
#define NO_MD_PROTOTYPES
|
||||
|
||||
/* Output assembler code for a block containing the constant parts
|
||||
|
Loading…
Reference in New Issue
Block a user