diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-09-09 19:41:14 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-09-09 19:41:14 +0000 |
commit | df15bd07dfd59a5176e0fa7699ab1179205491d9 (patch) | |
tree | 7ff7b013450ce8006dc803be209e036bc4a5f693 /gdb/symtab.h | |
parent | ddf17726b28e169d5ec0252a777a9c528c6a772f (diff) | |
download | gdb-df15bd07dfd59a5176e0fa7699ab1179205491d9.zip gdb-df15bd07dfd59a5176e0fa7699ab1179205491d9.tar.gz gdb-df15bd07dfd59a5176e0fa7699ab1179205491d9.tar.bz2 |
gdb/
Code cleanup.
* amd64-tdep.c (amd64_skip_prologue): Move the XMM code to ...
(amd64_skip_xmm_prologue): ... this new function. Describe its
parameters. No longer use amd64_prologue_line_bug.
* defs.h (producer_is_gcc_ge_4): New declaration.
* dwarf2read.c (producer_is_gcc_ge_4): Move to utils.c.
(process_full_comp_unit): Update its caller. Remove
amd64_prologue_line_bug initialization.
* symtab.h (struct symtab): Remove field amd64_prologue_line_bug.
* utils.c (producer_is_gcc_ge_4): Moved here from dwarf2read.c.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index eb7c53b..41a0fd6 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -784,11 +784,6 @@ struct symtab unsigned int epilogue_unwind_valid : 1; - /* At least GCC 4.6.0 and 4.6.1 can produce invalid false prologue and marker - on amd64. This flag is set independently of the symtab arch. */ - - unsigned amd64_prologue_line_bug : 1; - /* The macro table for this symtab. Like the blockvector, this may be shared between different symtabs --- and normally is for all the symtabs in a given compilation unit. */ |