summaryrefslogtreecommitdiffstats
path: root/gas
diff options
context:
space:
mode:
authorTimothy Wall <twall@alum.mit.edu>2000-02-10 21:03:12 +0000
committerTimothy Wall <twall@alum.mit.edu>2000-02-10 21:03:12 +0000
commita25c045a58c5e368fc1c8cddc03447e14e236238 (patch)
tree57a83a91bbb69640d52844cd707b47065c8022ba /gas
parentf28e8eb3fd8ab61a0c02b2d9a938a1400cf3bf25 (diff)
downloadppe42-binutils-a25c045a58c5e368fc1c8cddc03447e14e236238.tar.gz
ppe42-binutils-a25c045a58c5e368fc1c8cddc03447e14e236238.zip
Check label validity with TC_START_LABEL_WITHOUT_COLON if defined.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/read.c7
2 files changed, 11 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 537f7025d9..f12ee84060 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
2000-02-10 Timothy Wall <twall@redhat.com>
+ * read.c (read_a_source_file): If TC_START_LABEL_WITHOUT_COLON is
+ defined, use it to verify the symbol just read should be a label.
+
+2000-02-10 Timothy Wall <twall@redhat.com>
+
* app.c (do_scrub_chars): Handle "||" for parallel instructions
when DOUBLEBAR_PARALLEL is defined. Avoid stripping whitespace
around colons when KEEP_WHITE_AROUND_COLON is defined.
diff --git a/gas/read.c b/gas/read.c
index c5108933c8..c6d42e9a09 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -599,7 +599,12 @@ read_a_source_file (name)
/* In MRI mode, we need to handle the MACRO
pseudo-op specially: we don't want to put the
symbol in the symbol table. */
- if (! mri_line_macro)
+ if (! mri_line_macro
+#ifdef TC_START_LABEL_WITHOUT_COLON
+ && TC_START_LABEL_WITHOUT_COLON(c,
+ input_line_pointer)
+#endif
+ )
line_label = colon (line_start);
else
line_label = symbol_create (line_start,
OpenPOWER on IntegriCloud