From ab239d2d6a300721472235de31570b6bf36fc95b Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 17 Feb 2025 18:55:42 +0900 Subject: [PATCH] [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 --- tools/qfcc/source/qc-parse.y | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index 9c9d5c60c..21a737ff8 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -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;