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)
+