diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-05-18 16:51:07 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-05-18 16:51:07 -0400 |
commit | eaf95893f87d262bbb8ef64272aa3ca56f3f0e33 (patch) | |
tree | f87ebaa174c509d88b8de3daf4debe6c7ee21b11 /gcc | |
parent | 1733ed29a7956c665944db3de52ee22b7732f858 (diff) | |
download | gcc-eaf95893f87d262bbb8ef64272aa3ca56f3f0e33.zip gcc-eaf95893f87d262bbb8ef64272aa3ca56f3f0e33.tar.gz gcc-eaf95893f87d262bbb8ef64272aa3ca56f3f0e33.tar.bz2 |
(ASM_COMMENT_START): Add default definition.
From-SVN: r14097
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/dwarf2out.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 3012c24..ed7e2a0 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -52,6 +52,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define inline #endif +/* How to start an assembler comment. */ +#ifndef ASM_COMMENT_START +#define ASM_COMMENT_START ";#" +#endif + typedef struct dw_cfi_struct *dw_cfi_ref; typedef struct dw_fde_struct *dw_fde_ref; typedef union dw_cfi_oprnd_struct *dw_cfi_oprnd_ref; |