commit | 426056acf2cd1ed40cd5a3b7cc5e15d5f7d49b51 | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Sun May 03 19:54:21 2009 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Sun May 03 19:54:21 2009 +0000 |
tree | c145559708a54cbab92810cf8b1119b72758d3a3 | |
parent | 055797b789473ae1f6d0e4cdba9583c7d02a8371 [diff] [blame] |
Fix the testcase for PR4132. llvm-svn: 70796
diff --git a/clang/test/Preprocessor/macro_paste_spacing2.c b/clang/test/Preprocessor/macro_paste_spacing2.c index 460b022..0db721a 100644 --- a/clang/test/Preprocessor/macro_paste_spacing2.c +++ b/clang/test/Preprocessor/macro_paste_spacing2.c
@@ -1,5 +1,6 @@ // RUN: clang-cc %s -E | grep "movl %eax" - +// PR4132 #define R1E %eax -#define epilogue(r1) movl r1; -epilogue(R1E) +#define epilogue(r1) movl r1 ## E; +epilogue(R1) +