* hpread.c (hpread_type_lookup): Fix compilation failure.

This commit is contained in:
Joel Brobecker 2007-01-04 07:20:24 +00:00
parent 27fd2f5070
commit 5310399798
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2007-01-04 Joel Brobecker <brobecker@adacore.com>
* hpread.c (hpread_type_lookup): Fix compilation failure.
2007-01-04 Qinwei <qinwei@sunnorth.com.cn>
* NEWS: New port to S+core.

View File

@ -4871,10 +4871,9 @@ hpread_type_lookup (dnttpointer hp_type, struct objfile *objfile)
struct type *ptrmemtype;
struct type *class_type;
struct type *memtype;
memtype = hpread_type_lookup (dn_bufp->dptrmem.memtype,
objfile),
class_type = hpread_type_lookup (dn_bufp->dptrmem.pointsto,
objfile),
memtype = hpread_type_lookup (dn_bufp->dptrmem.memtype, objfile);
class_type = hpread_type_lookup (dn_bufp->dptrmem.pointsto, objfile);
return lookup_memberptr_type (memtype, class_type);
}
break;