From 7e233208cdc2d479fd020ed0973a067765784e94 Mon Sep 17 00:00:00 2001 From: "Richard B. Kreckel" Date: Thu, 26 Aug 2004 04:42:05 +0000 Subject: [PATCH] re PR target/17171 (Unrecognized comments in generated asm) Patch from Richard B Kreckel. PR target/17171 * config/i386/gas.h (ASM_COMMENT_START): Define to "#". From-SVN: r86603 --- gcc/ChangeLog | 5 +++++ gcc/config/i386/gas.h | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3dcb8338104..1c616f40eb2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-08-25 Richard B. Kreckel + + PR target/17171 + * config/i386/gas.h (ASM_COMMENT_START): Define to "#". + 2004-08-25 Richard Henderson * config/alpha/alpha.c (alpha_cannot_force_const_mem): New. diff --git a/gcc/config/i386/gas.h b/gcc/config/i386/gas.h index 9f002431018..bf545128467 100644 --- a/gcc/config/i386/gas.h +++ b/gcc/config/i386/gas.h @@ -117,4 +117,8 @@ Boston, MA 02111-1307, USA. */ /* Print opcodes the way that GAS expects them. */ #define GAS_MNEMONICS 1 +/* The comment-starter string as GAS expects it. */ +#undef ASM_COMMENT_START +#define ASM_COMMENT_START "#" + #define TARGET_ASM_FILE_START_FILE_DIRECTIVE true -- 2.30.2