Home | History | Annotate | Download | only in Preprocessor
      1 // RUN: %clang_cc1 -fsyntax-only -detailed-preprocessing-record %s
      2 
      3 // http://llvm.org/PR11120
      4 
      5 #define STRINGIZE(text) STRINGIZE_I(text)
      6 #define STRINGIZE_I(text) #text
      7 
      8 #define INC pp-record.h
      9 
     10 #include STRINGIZE(INC)
     11 
     12 CAKE;
     13