diff options
-rw-r--r-- | test/Preprocessor/macro_paste_spacing2.c | 7 |
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) + |