brintos

brintos / llvm-project-archived public Read only

0
0
Text · 420 B · 48000ed Raw
35 lines · c
1// RUN: %clang_cc1 -fsyntax-only -detailed-preprocessing-record %s2 3// http://llvm.org/PR111204 5#define STRINGIZE(text) STRINGIZE_I(text)6#define STRINGIZE_I(text) #text7 8#define INC pp-record.h9 10#include STRINGIZE(INC)11 12CAKE;13 14#define DIR 115#define FNM(x) x16 17FNM(18#if DIR19    int a;20#else21    int b;22#endif23)24 25#define M1 c26#define M2 int27#define FM2(x,y) y x28FM2(M1, M2);29 30#define FM3(x) x31FM3(32#define M3 int x233)34M3;35