aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog2
-rw-r--r--gdb/coffread.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1cfc3ee..496ea3b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -6,6 +6,8 @@
* coffread.c (coff_symtab_read): Set language_minimal as the
language for the "_globals_" pseudo-file.
+ (process_coff_symbol): Set the symbol's language to the language
+ of current_subfile.
2009-05-22 Pedro Alves <pedro@codesourcery.com>
diff --git a/gdb/coffread.c b/gdb/coffread.c
index c5b5722..30b7726 100644
--- a/gdb/coffread.c
+++ b/gdb/coffread.c
@@ -1487,7 +1487,7 @@ process_coff_symbol (struct coff_symbol *cs,
memset (sym, 0, sizeof (struct symbol));
name = cs->c_name;
name = EXTERNAL_NAME (name, objfile->obfd);
- SYMBOL_LANGUAGE (sym) = language_auto;
+ SYMBOL_LANGUAGE (sym) = current_subfile->language;
SYMBOL_SET_NAMES (sym, name, strlen (name), objfile);
/* default assumptions */