summaryrefslogtreecommitdiffstats
path: root/gdb/stabsread.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>1997-11-22 00:50:09 +0000
committerJim Blandy <jimb@codesourcery.com>1997-11-22 00:50:09 +0000
commit345bcdcc4df0efef26323da0511eed238089487e (patch)
tree920014d4d462ee48536c7d092b449201ac41a906 /gdb/stabsread.c
parentd627a67430a8ec1f27994abb5d8775db0c02d355 (diff)
downloadppe42-binutils-345bcdcc4df0efef26323da0511eed238089487e.tar.gz
ppe42-binutils-345bcdcc4df0efef26323da0511eed238089487e.zip
* valops.c (call_function_by_hand): If the function has a
prototype, convert its arguments as if by assignment. Otherwise, do the usual promotions. * stabsread.c (define_symbol): Set the TYPE_FLAG_PROTOTYPED flag on functions' types when we can; all C++ functions should get it, and if the Sun-style prototype notation is in the stabs, we can notice that.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r--gdb/stabsread.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c
index 62c3359c15..e32afd83f2 100644
--- a/gdb/stabsread.c
+++ b/gdb/stabsread.c
@@ -1607,6 +1607,11 @@ define_symbol (valu, string, desc, type, objfile)
in GDB. E.g. "int" is converted to "function returning int". */
if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_FUNC)
SYMBOL_TYPE (sym) = lookup_function_type (SYMBOL_TYPE (sym));
+
+ /* All functions in C++ have prototypes. */
+ if (SYMBOL_LANGUAGE (sym) == language_cplus)
+ TYPE_FLAGS (SYMBOL_TYPE (sym)) |= TYPE_FLAG_PROTOTYPED;
+
/* fall into process_prototype_types */
process_prototype_types:
@@ -1614,10 +1619,15 @@ define_symbol (valu, string, desc, type, objfile)
about their actual types (FIXME -- we should remember the whole
function prototype), but the list may define some new types
that we have to remember, so we must scan it now. */
- while (*p == ';') {
- p++;
- read_type (&p, objfile);
- }
+ if (*p == ';')
+ {
+ TYPE_FLAGS (SYMBOL_TYPE (sym)) |= TYPE_FLAG_PROTOTYPED;
+
+ while (*p == ';') {
+ p++;
+ read_type (&p, objfile);
+ }
+ }
break;
case 'F':
OpenPOWER on IntegriCloud