From 4ec6df385b7de555574cf78f53068585b28600cd Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 17 Feb 2025 18:58:08 +0900 Subject: [PATCH] [qfcc] Fix the calluse tests broken by attributes Unfortunately, the preproc-1 test is broken (by __VA_OPT__ fixes) --- tools/qfcc/test/calluse.r | 2 +- tools/qfcc/test/calluse2.r | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/test/calluse.r b/tools/qfcc/test/calluse.r index 50b457da4..e221b408f 100644 --- a/tools/qfcc/test/calluse.r +++ b/tools/qfcc/test/calluse.r @@ -1,4 +1,4 @@ -id func (id self, SEL bar, ...) +@attribute(no_va_list) id func (id self, SEL bar, ...) { return (id)1; } diff --git a/tools/qfcc/test/calluse2.r b/tools/qfcc/test/calluse2.r index b517f3f94..d644d2aa5 100644 --- a/tools/qfcc/test/calluse2.r +++ b/tools/qfcc/test/calluse2.r @@ -1,4 +1,4 @@ -id func (id self, SEL bar, ...) +@attribute(no_va_list) id func (id self, SEL bar, ...) { return (id)1; }