mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 00:10:52 +00:00
[qfcc] simplify __VA_OPT__ handling
It turns out it didn't need to expand the arguments itself. Now my @image tests get past the pre-processor. ie, the following works (until spir-v segs): #define __image(t,...) @image(t __VA_OPT__(,) __VA_ARGS__) #define _image(d,...) __image(float, d __VA_OPT__(,) __VA_ARGS__) @generic(foo=[_image(1D,Array)]) { void bar(foo baz); }
This commit is contained in:
parent
447af36d43
commit
5b9e2f6766
1 changed files with 1 additions and 26 deletions
|
@ -2329,31 +2329,6 @@ rua_macro_line (rua_macro_t *macro, rua_ctx_t *ctx)
|
|||
macro->tail = &expr->next;
|
||||
}
|
||||
|
||||
static void
|
||||
expand_arg (rua_macro_t *macro, rua_macro_t *arg, yyscan_t scanner, rua_ctx_t *ctx)
|
||||
{
|
||||
auto extra = qc_yyget_extra (scanner);
|
||||
rua_extra_t arg_extra = *extra;
|
||||
arg_extra.macro = 0;
|
||||
arg_extra.no_lex = true;
|
||||
queue_macro (&arg_extra, arg);
|
||||
qc_yyset_extra (&arg_extra, scanner);
|
||||
|
||||
while (true) {
|
||||
rua_tok_t e;
|
||||
if (next_token (&e, scanner, ctx)) {
|
||||
if (macro->tokens
|
||||
|| (e.token != -rua_space && e.token != -rua_ignore)) {
|
||||
append_token (macro, &e);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
qc_yyset_extra (extra, scanner);
|
||||
}
|
||||
|
||||
static bool
|
||||
macro_empty (rua_macro_t *macro, yyscan_t scanner)
|
||||
{
|
||||
|
@ -2421,7 +2396,7 @@ rua_macro_va_opt (rua_macro_t *macro, rua_ctx_t *ctx)
|
|||
arg->num_args = cur->num_args;
|
||||
arg->args = cur->args;
|
||||
|
||||
expand_arg (macro, arg, ctx->scanner, ctx);
|
||||
queue_macro (extra, arg);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue