From b5259bf8f87635c288af546796833874106d25cd Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 17 Feb 2025 18:53:55 +0900 Subject: [PATCH] [qfcc] Don't copy params for aliased function types Doing so tramples on the alias data, and the params have already been copied in the unalized type anyway. --- tools/qfcc/source/type.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/qfcc/source/type.c b/tools/qfcc/source/type.c index 5e49c6f12..82b7caa29 100644 --- a/tools/qfcc/source/type.c +++ b/tools/qfcc/source/type.c @@ -728,8 +728,9 @@ find_type (const type_t *type) // allocate a new one auto new = new_type (); *new = *type; - if (is_func (type)) { + if (new->meta != ty_alias && is_func (type)) { new->func.param_types = 0; + new->func.param_quals = 0; const type_t *t = unalias_type (type); int num_params = t->func.num_params; if (num_params < 0) {