diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2006-09-12 19:31:09 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2006-09-12 19:31:09 +0000 |
commit | 66cccea6712ed41290eb0d3103d7dd6e94322d3b (patch) | |
tree | 06b4263298f257454aecc52ac114b514912bb7fc /gcc | |
parent | f8248aaa3b808d42da244c4c69feaa0db61ff489 (diff) | |
download | gcc-66cccea6712ed41290eb0d3103d7dd6e94322d3b.zip gcc-66cccea6712ed41290eb0d3103d7dd6e94322d3b.tar.gz gcc-66cccea6712ed41290eb0d3103d7dd6e94322d3b.tar.bz2 |
dwarf2out.c (file_table_last_lookup): Move this GC'd declaration outside of #ifdef DWARF2_DEBUGGING_INFO to fix...
* dwarf2out.c (file_table_last_lookup): Move this GC'd declaration
outside of #ifdef DWARF2_DEBUGGING_INFO to fix bootstrap failure
on platforms that don't use dwarf for debug info.
Co-Authored-By: Roger Sayle <roger@eyesopen.com>
From-SVN: r116903
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1d41322..35c029b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2006-09-12 Andrew Pinski <pinskia@physics.uc.edu> + Roger Sayle <roger@eyesopen.com> + + * dwarf2out.c (file_table_last_lookup): Move this GC'd declaration + outside of #ifdef DWARF2_DEBUGGING_INFO to fix bootstrap failure + on platforms that don't use dwarf for debug info. + 2006-09-12 Jason Merrill <jason@redhat.com> PR middle-end/28493 diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 9bf5ffc..982d908 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -3998,6 +3998,9 @@ static GTY(()) struct dwarf_file_data * last_emitted_file; /* Number of internal labels generated by gen_internal_sym(). */ static GTY(()) int label_num; +/* Cached result of previous call to lookup_filename. */ +static GTY(()) struct dwarf_file_data * file_table_last_lookup; + #ifdef DWARF2_DEBUGGING_INFO /* Offset from the "steady-state frame pointer" to the frame base, @@ -13522,8 +13525,6 @@ file_table_hash (const void *p_p) the index of the filename was looked up last. This handles the majority of all searches. */ -static GTY(()) struct dwarf_file_data * file_table_last_lookup; - static struct dwarf_file_data * lookup_filename (const char *file_name) { |