[qfcc] (rua) Copy spec attributes correctly

If the destination spec didn't already have attributes, nothing was
copied due to me-logic (once again) :P
This commit is contained in:
Bill Currie 2025-02-17 18:55:42 +09:00
parent b5259bf8f8
commit ab239d2d6a

View file

@ -401,12 +401,9 @@ spec_merge (specifier_t spec, specifier_t new)
spec.multi_store = true;
}
}
for (auto attr = &spec.attributes; *attr; attr = &(*attr)->next) {
if (!(*attr)->next) {
(*attr)->next = new.attributes;
break;
}
}
auto attr = &spec.attributes;
for (; *attr; attr = &(*attr)->next) continue;
*attr = new.attributes;
spec.sym = new.sym;
spec.spec_bits |= new.spec_bits;
return spec;