summaryrefslogtreecommitdiffstats
path: root/test/Preprocessor/macro_paste_spacing2.c
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-05-03 19:54:21 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-05-03 19:54:21 +0000
commit686a21bf859f955ff8d3d179da64b7a23c0fed44 (patch)
tree6721964a1b757d401360fec1fde0253de99348e7 /test/Preprocessor/macro_paste_spacing2.c
parent96682554198b20764c1b8cbb3f77e4c3dd76d42b (diff)
Fix the testcase for PR4132.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/macro_paste_spacing2.c')
-rw-r--r--test/Preprocessor/macro_paste_spacing2.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/Preprocessor/macro_paste_spacing2.c b/test/Preprocessor/macro_paste_spacing2.c
index 460b022b37..0db721aa7b 100644
--- a/test/Preprocessor/macro_paste_spacing2.c
+++ b/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)
+