20000419-1.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 16 行

C
16
字号
/* Test for erroneous deletion of the entire macro expansion when pruning   \r escapes.  Problem noted by DJ Delorie <dj@delorie.com>; test case   distilled from GNU libc header files.  *//* { dg-do preprocess } */#define __REDIRECT(name, proto, alias) name proto __asm__ (__ASMNAME (#alias))#define __ASMNAME(cname)  __ASMNAME2 (__USER_LABEL_PREFIX__, cname)#define __ASMNAME2(prefix, cname) __STRING (prefix) cname#define __STRING(x)    #x__REDIRECT (a, b, c)__ASMNAME2 (__USER_LABEL_PREFIX__, harumph)/* { dg-bogus "used without args" "no args, 1" { target *-*-* } 11 } *//* { dg-bogus "used without args" "no args, 1" { target *-*-* } 12 } */

⌨️ 快捷键说明

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