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:
Paul Pluzhnikov
2008-06-06 18:29:00 +00:00
parent fbc5282e75
commit fed276330d
2 changed files with 8 additions and 1 deletions

View File

@@ -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);
}