diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-07-29 09:20:17 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-07-29 09:20:17 -0400 |
commit | 12c731a540ae4ee69573003db5862d9accb3ec48 (patch) | |
tree | 15385215b0cc3e0de1ea4667bee4245efe694483 /gcc | |
parent | a63c3ebc93509036005ab073202d44ef23d3a4c9 (diff) | |
download | gcc-12c731a540ae4ee69573003db5862d9accb3ec48.zip gcc-12c731a540ae4ee69573003db5862d9accb3ec48.tar.gz gcc-12c731a540ae4ee69573003db5862d9accb3ec48.tar.bz2 |
(ASM_OUTPUT_CONSTRUCTOR): Add FILE arg to assemble_name.
From-SVN: r10195
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/1750a/1750a.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/1750a/1750a.h b/gcc/config/1750a/1750a.h index d7332ef..f70c665 100644 --- a/gcc/config/1750a/1750a.h +++ b/gcc/config/1750a/1750a.h @@ -1247,12 +1247,12 @@ enum reg_class { NO_REGS, INDEX_REGS, BASE_REGS, ALL_REGS, LIM_REG_CLASSES }; sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO))) #define ASM_OUTPUT_CONSTRUCTOR(FILE, NAME) do { \ - fprintf(FILE, "\tinit\n\t"); assemble_name(NAME); \ - fprintf(FILE," ;constructor"); } while (0) + fprintf(FILE, "\tinit\n\t"); assemble_name(FILE, NAME); \ + fprintf(FILE," ;constructor\n"); } while (0) #define ASM_OUTPUT_DESTRUCTOR(FILE, NAME) do { \ - fprintf(FILE, "\tinit\n\t"); assemble_name(NAME); \ - fprintf(FILE," ;destructor"); } while (0) + fprintf(FILE, "\t; ASM_OUTPUT_DESTRUCTOR called for "); \ + assemble_name(FILE, NAME); } while (0) /* Define the parentheses used to group arithmetic operations in assembler code. */ |