diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-04-28 07:27:30 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-04-28 07:27:30 +0000 |
commit | 6adc060c888855177318713fc75bbe82156ee169 (patch) | |
tree | 4bae5a6b221ba01451208bd45820a18e9e8b9e0f /binutils/dwarf.c | |
parent | 78f0be3d8aa4e18c958d9a9227b25ed631e60f14 (diff) | |
download | gdb-6adc060c888855177318713fc75bbe82156ee169.zip gdb-6adc060c888855177318713fc75bbe82156ee169.tar.gz gdb-6adc060c888855177318713fc75bbe82156ee169.tar.bz2 |
binutils/
* dwarf.c (display_gdb_index): Support version 5, warn on version 4.
Diffstat (limited to 'binutils/dwarf.c')
-rw-r--r-- | binutils/dwarf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index cc85525..c37a1f3 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -5070,6 +5070,9 @@ display_gdb_index (struct dwarf_section *section, warn (_("The address table data in version 3 may be wrong.\n")); break; case 4: + warn (_("Version 4 does not support case insensitive lookups.\n")); + break; + case 5: break; default: warn (_("Unsupported version %lu.\n"), (unsigned long) version); |