diff options
author | Tom Tromey <tom@tromey.com> | 2016-03-31 14:16:56 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2016-05-17 12:01:57 -0600 |
commit | 9ab0bb2a673875ba15d6956f2c587c9c31f40357 (patch) | |
tree | 396a949de0e19a1ea016717cdf860b6229075ba6 /gdb/ChangeLog | |
parent | 5ff087ac1870878ad980503f5c8b60b6ffa32350 (diff) | |
download | gdb-9ab0bb2a673875ba15d6956f2c587c9c31f40357.zip gdb-9ab0bb2a673875ba15d6956f2c587c9c31f40357.tar.gz gdb-9ab0bb2a673875ba15d6956f2c587c9c31f40357.tar.bz2 |
Fix latent yacc-related bug in gdb/Makefile.in init.c rule
gdb's Makefile.in does not currently scan .y files to add global
initializers from these files to init.c. However, at least ada-exp.y
tries to use this feature.
This patch fixes the problem.
2016-05-17 Tom Tromey <tom@tromey.com>
* Makefile.in (init.c): Search .y files for initialization
functions.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0c25d8a..4b0c44b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2016-05-17 Tom Tromey <tom@tromey.com> + + * Makefile.in (init.c): Search .y files for initialization + functions. + 2016-05-12 Doug Evans <dje@google.com> PR symtab/19999 |