Files
llvm-project/clang/test/Preprocessor/stringize_space2.c
Chris Lattner 24dbee71ab Fix a stringizing bug that Neil noticed. We should preprocess this:
#define t(x) #x
t(a
c)

to "a c", not "ac".

llvm-svn: 40060
2007-07-19 16:11:58 +00:00

7 lines
61 B
C

/* RUN: clang -E %s | grep 'a c'
*/
#define t(x) #x
t(a
c)