forked from Imagelibrary/binutils-gdb
2008-06-06 Paul Pluzhnikov <ppluzhnikov@google.com>
PR gdb/1147 * gdb/valopts.c (find_overload_match): Handle references to pointers.
This commit is contained in:
@@ -2101,7 +2101,8 @@ find_overload_match (struct type **arg_types, int nargs,
|
||||
if (objp)
|
||||
{
|
||||
if (TYPE_CODE (value_type (temp)) != TYPE_CODE_PTR
|
||||
&& TYPE_CODE (value_type (*objp)) == TYPE_CODE_PTR)
|
||||
&& (TYPE_CODE (value_type (*objp)) == TYPE_CODE_PTR
|
||||
|| TYPE_CODE (value_type (*objp)) == TYPE_CODE_REF))
|
||||
{
|
||||
temp = value_addr (temp);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user