mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 11:04:18 +08:00
Previously, the size of pointers was taken from the hosts pointer size. Now, it is a function of TARGET_PTR_BITS.
This commit is contained in:
parent
2425869cc2
commit
67359871bb
@ -1503,10 +1503,8 @@ read_tag_pointer_type (dip)
|
||||
TYPE_POINTER_TYPE (type) = utype;
|
||||
|
||||
/* We assume the machine has only one representation for pointers! */
|
||||
/* FIXME: This confuses host<->target data representations, and is a
|
||||
poor assumption besides. */
|
||||
|
||||
TYPE_LENGTH (utype) = sizeof (char *);
|
||||
/* FIXME: Possably a poor assumption */
|
||||
TYPE_LENGTH (utype) = TARGET_PTR_BIT / TARGET_CHAR_BIT ;
|
||||
TYPE_CODE (utype) = TYPE_CODE_PTR;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user