projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfce2ea
)
2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
author
Pedro Alves
<palves@redhat.com>
Tue, 23 Feb 2010 17:03:54 +0000
(17:03 +0000)
committer
Pedro Alves
<palves@redhat.com>
Tue, 23 Feb 2010 17:03:54 +0000
(17:03 +0000)
* c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
gdb/ChangeLog
patch
|
blob
|
history
gdb/c-exp.y
patch
|
blob
|
history
diff --git
a/gdb/ChangeLog
b/gdb/ChangeLog
index 4abb6af8ccbfed7431d590e927eaa155bd98159c..3d9db88999803074e233c35ecbae5cafcf2319bd 100644
(file)
--- a/
gdb/ChangeLog
+++ b/
gdb/ChangeLog
@@
-1,3
+1,7
@@
+2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
+
+ * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
+
2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
* varobj.c (varobj_update): Avoid non-constants in initializers.
diff --git
a/gdb/c-exp.y
b/gdb/c-exp.y
index 5ac90d8c69b00c11cb2161a407b22a1a5d5687e1..1af76c9dc71a7d2ce7f55e88c82321689735f380 100644
(file)
--- a/
gdb/c-exp.y
+++ b/
gdb/c-exp.y
@@
-2295,7
+2295,7
@@
lex_one_token (void)
typedef struct
{
int token;
-
union
YYSTYPE value;
+ YYSTYPE value;
} token_and_value;
DEF_VEC_O (token_and_value);