mirror of
https://github.com/frida/tinycc
synced 2024-12-25 14:36:49 +03:00
Correctly identify homogeneous float aggregate
First related symbol of a structure justs indicate its size. This first member is the second related symbol.
This commit is contained in:
parent
c3e7c725b5
commit
63a84713ee
@ -776,7 +776,7 @@ static int is_hgen_float_aggr(CType *type)
|
||||
struct Sym *ref;
|
||||
int btype, nb_fields = 0;
|
||||
|
||||
ref = type->ref;
|
||||
ref = type->ref->next;
|
||||
btype = ref->type.t & VT_BTYPE;
|
||||
if (btype == VT_FLOAT || btype == VT_DOUBLE) {
|
||||
for(; ref && btype == (ref->type.t & VT_BTYPE); ref = ref->next, nb_fields++);
|
||||
|
Loading…
Reference in New Issue
Block a user