aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-03-03 13:03:48 +0000
committerNick Clifton <nickc@redhat.com>2005-03-03 13:03:48 +0000
commit406a7f05f4c15ff9139c25ec0b4f8050d3113e5f (patch)
tree4a3e0d5ca84b9ba812592f9ac0132562fd6109c3
parentd3d5c686819c0535974070bc64458e263c3d82f1 (diff)
downloadgdb-406a7f05f4c15ff9139c25ec0b4f8050d3113e5f.zip
gdb-406a7f05f4c15ff9139c25ec0b4f8050d3113e5f.tar.gz
gdb-406a7f05f4c15ff9139c25ec0b4f8050d3113e5f.tar.bz2
(line_comment_chars): Include the # character as otherwise this breaks
#APP/#NO_APP processing.
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-iq2000.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 8de9f44..b1592b2 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-03 Nick Clifton <nickc@redhat.com>
+
+ * config/tc-iq2000.c (line_comment_chars): Include the # character
+ as otherwise this breaks #APP/#NO_APP processing.
+
2005-03-03 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
* 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 c56df07..1131909 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";