2002-01-04 Daniel Jacobowitz <drow@mvista.com>
authorDaniel Jacobowitz <drow@false.org>
Fri, 4 Jan 2002 17:51:38 +0000 (17:51 +0000)
committerDaniel Jacobowitz <drow@false.org>
Fri, 4 Jan 2002 17:51:38 +0000 (17:51 +0000)
        * valops.c (find_overload_match): Accept obj as a
        reference parameter.  Update it before returning.
        * value.h (find_overload_match): Update prototype.
        * eval.c (evaluate_subexp_standard): Pass object to
        find_overload_match by reference.

gdb/ChangeLog
gdb/eval.c
gdb/valops.c
gdb/value.h

index c7539f838ce9bb8d3651001053525e545a97294f..0f2c8354c641e2c1047fd1a263db110ef361b809 100644 (file)
@@ -1,3 +1,11 @@
+2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
+
+       * valops.c (find_overload_match): Accept obj as a
+       reference parameter.  Update it before returning.
+       * value.h (find_overload_match): Update prototype.
+       * eval.c (evaluate_subexp_standard): Pass object to
+       find_overload_match by reference.
+
 2002-01-03  Andrew Cagney  <ac131313@redhat.com>
 
        * valarith.c: Replace value_ptr with struct value pointer.  Remove
index a56ed84fb4a1a84be03e543f51126a4553d20b8c..3f5aca3733c89bde1a0814ddc626a5cdddf1102d 100644 (file)
@@ -845,7 +845,7 @@ evaluate_subexp_standard (struct type *expect_type,
 
              (void) find_overload_match (arg_types, nargs, tstr,
                                     1 /* method */ , 0 /* strict match */ ,
-                                         arg2 /* the object */ , NULL,
+                                         &arg2 /* the object */ , NULL,
                                          &valp, NULL, &static_memfuncp);
 
 
index cfc6937da00979d2f09d5d989cfed9ac1ab42c93..dfef1131acc0a34a3b9fdd9af402bc2c4abc1da0 100644 (file)
@@ -2636,12 +2636,13 @@ value_find_oload_method_list (struct value **argp, char *method, int offset,
 
 int
 find_overload_match (struct type **arg_types, int nargs, char *name, int method,
-                    int lax, struct value *obj, struct symbol *fsym,
+                    int lax, struct value **objp, struct symbol *fsym,
                     struct value **valp, struct symbol **symp, int *staticp)
 {
   int nparms;
   struct type **parm_types;
   int champ_nparms = 0;
+  struct value *obj = (objp ? *objp : NULL);
 
   short oload_champ = -1;      /* Index of best overloaded function */
   short oload_ambiguous = 0;   /* Current ambiguity state for overload resolution */
@@ -2865,6 +2866,15 @@ find_overload_match (struct type **arg_types, int nargs, char *name, int method,
       xfree (func_name);
     }
 
+  if (objp)
+    {
+      if (TYPE_CODE (VALUE_TYPE (temp)) != TYPE_CODE_PTR
+         && TYPE_CODE (VALUE_TYPE (*objp)) == TYPE_CODE_PTR)
+       {
+         temp = value_addr (temp);
+       }
+      *objp = temp;
+    }
   return oload_incompatible ? 100 : (oload_non_standard ? 10 : 0);
 }
 
index 006ec1117159e117fb7665440d202803337e0d03..a6a517ceb9c150a3037feb1783116ca39853e115 100644 (file)
@@ -388,7 +388,7 @@ extern struct fn_field *value_find_oload_method_list (struct value **, char *,
 
 extern int find_overload_match (struct type **arg_types, int nargs,
                                char *name, int method, int lax,
-                               struct value *obj, struct symbol *fsym,
+                               struct value **objp, struct symbol *fsym,
                                struct value **valp, struct symbol **symp,
                                int *staticp);
 
This page took 0.038331 seconds and 4 git commands to generate.