summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorWilfried Moser <moser@cygnus>1996-01-09 12:46:20 +0000
committerWilfried Moser <moser@cygnus>1996-01-09 12:46:20 +0000
commitd1f5c8043acfeb2b8e2ecdfca6dc43af016719cc (patch)
tree92e0fe8ac0755263628a7871161ab75300afc235 /gdb
parent1f2337586059fdc512ffd2b4145f11f454bb663f (diff)
downloadbinutils-gdb-d1f5c8043acfeb2b8e2ecdfca6dc43af016719cc.tar.gz
* ch-exp.c (parse_primval): in case ARRAY: Add missing FORWARD_TOKEN ().
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/ch-exp.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 242978b028c..3ca12e89bde 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jan 9 04:44:47 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
+
+ * ch-exp.c (parse_primval): in case ARRAY: Add missing FORWARD_TOKEN ().
+
Mon Jan 8 13:29:34 1996 Stan Shebs <shebs@andros.cygnus.com>
* remote-mips.c (mips_receive_header): Recognize \012 instead
diff --git a/gdb/ch-exp.c b/gdb/ch-exp.c
index 31c92b5e247..492f3765a72 100644
--- a/gdb/ch-exp.c
+++ b/gdb/ch-exp.c
@@ -642,6 +642,7 @@ parse_primval ()
if (PEEK_TOKEN () != TYPENAME)
error ("missing MODENAME after ARRAY()");
type = PEEK_LVAL().tsym.type;
+ FORWARD_TOKEN ();
expect ('(', NULL);
parse_expr ();
expect (')', "missing right parenthesis");