tr-warn2.c

来自「用于进行gcc测试」· C语言 代码 · 共 19 行

C
19
字号
/* K+R rejects use of function-like macros in non-function context.   ANSI C explicitly permits this (the macro is not expanded).   We should not warn about this during pre-expansion of arguments,   since traditional preprocessors don't do pre-expansion, and we get   the warning anyway during the re-scan pass if and only if it is   appropriate.  *//* { dg-do preprocess } *//* { dg-options -Wtraditional } */#define f(x) x#define g(x) x / 2#define h(a, b) a(b)f(g) (3)	    /* { dg-bogus "must be used with arguments" } */f 2		    /* { dg-warning "must be used with arguments" } */f(g) 3		    /* { dg-warning "must be used with arguments" } */h(f, 3)		    /* { dg-bogus "must be used with arguments" } */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?