X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.dg%2Fcpp%2Fmacro5.c;fp=gcc%2Ftestsuite%2Fgcc.dg%2Fcpp%2Fmacro5.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=9e226b871fa07a9a2743306dee1126e71214e270;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.dg/cpp/macro5.c b/gcc/testsuite/gcc.dg/cpp/macro5.c deleted file mode 100644 index 9e226b87..00000000 --- a/gcc/testsuite/gcc.dg/cpp/macro5.c +++ /dev/null @@ -1,24 +0,0 @@ -/* { dg-do preprocess } */ - -/* Test source Robert Lipe, with minor modifications for the testsuite - by Neil Booth. 29 Oct 2000. */ - -#define _VA_ARGS_0() 42 -#define _L_0() ( -#define _R_0() ) - -#define __VA_ARGLIST(argc,list) \ - _VA_ARGS_##argc list - -#define _CAT_LIST(argc,list1,list2) \ - _L_##argc list1 _R_##argc list2 - -#define _VA_ARGLIST(argc,list1,list2) \ - __VA_ARGLIST(argc, \ - _CAT_LIST(argc, list1, list2)) - -#define BLAH(a) _VA_ARGLIST(a, (), ()) - -#if BLAH (0) != 42 -#error Simulated varargs macros -#endif