aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-06-04 05:03:31 +0000
committerAlan Modra <amodra@gmail.com>2000-06-04 05:03:31 +0000
commit0b5454486cd4b2e34f4ac7eb51092ef55fa97b07 (patch)
treef487d6333180a209b379b83016cc7ec142eadd99 /gas
parentac743b2c9daca8fb059552fa7416ab58052c78b8 (diff)
downloadfsf-binutils-gdb-0b5454486cd4b2e34f4ac7eb51092ef55fa97b07.zip
fsf-binutils-gdb-0b5454486cd4b2e34f4ac7eb51092ef55fa97b07.tar.gz
fsf-binutils-gdb-0b5454486cd4b2e34f4ac7eb51092ef55fa97b07.tar.bz2
(is_end_of_line): Add three missing lines of 0 initializers.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog3
-rw-r--r--gas/read.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 6012ddc..8153b54 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,6 +1,7 @@
2000-06-04 Alan Modra <alan@linuxcare.com.au>
- * read.c (is_end_of_line): No ';' for TC_HPPA.
+ * read.c (is_end_of_line): No ';' for TC_HPPA. Add missing
+ initializers too.
2000-06-03 H.J. Lu <hjl@gnu.org>
diff --git a/gas/read.c b/gas/read.c
index 4081afe..7d6f19a 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -169,6 +169,9 @@ char is_end_of_line[256] =
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* */
};
/* Functions private to this file. */