From: Nick Clifton Date: Thu, 3 Mar 2005 13:03:48 +0000 (+0000) Subject: (line_comment_chars): Include the # character as otherwise this breaks X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=406a7f05f4c15ff9139c25ec0b4f8050d3113e5f;p=binutils-gdb.git (line_comment_chars): Include the # character as otherwise this breaks #APP/#NO_APP processing. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 8de9f44caf5..b1592b22e90 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2005-03-03 Nick Clifton + + * config/tc-iq2000.c (line_comment_chars): Include the # character + as otherwise this breaks #APP/#NO_APP processing. + 2005-03-03 Ramana Radhakrishnan * config/tc-arc.c(md_assemble): Remove dead code for handling diff --git a/gas/config/tc-iq2000.c b/gas/config/tc-iq2000.c index c56df075f4a..11319098d44 100644 --- a/gas/config/tc-iq2000.c +++ b/gas/config/tc-iq2000.c @@ -55,7 +55,7 @@ typedef struct iq2000_insn; const char comment_chars[] = "#"; -const char line_comment_chars[] = ""; +const char line_comment_chars[] = "#"; const char line_separator_chars[] = ";"; const char EXP_CHARS[] = "eE"; const char FLT_CHARS[] = "dD";