From 91b269a0b86f0ea8875f7a6a4df1904c62a7b119 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 15 Feb 2025 13:39:40 +0900 Subject: [PATCH] [qfcc] Hook up @image parsing Seems to work nicely, but I have some work to do with getting generic functions to match (eg, when the format is specified) --- tools/qfcc/source/qc-parse.y | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index fc089fb1b..3f6f2df92 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -1374,6 +1374,7 @@ type_ref | STRUCT tag { $$ = forward_decl_expr ($2, $1, nullptr); } | ENUM tag { $$ = forward_decl_expr ($2, 'e', nullptr); } | handle tag { $$ = forward_decl_expr ($2, 'h', $1.type); } + | image_specifier { $$ = new_type_expr ($1.type); } | CLASS_NAME { $$ = new_type_expr ($1->type); } | TYPE_NAME { @@ -1441,8 +1442,8 @@ image_specifier }[parse_number] expr_list ')' { - auto type = $spec.type; - auto spec = type_spec (image_type (type, $expr_list)); + auto spec = default_type ($spec, 0); + spec = type_spec (image_type (spec.type, $expr_list)); $$ = spec; ctx->language->parse_number = $parse_number; }