xref: /llvm-project/clang/test/Preprocessor/macro_paste_spacing2.c (revision 8fbe78f6fc7b41d1a4228c126fcb522131150518)
1*8fbe78f6SDaniel Dunbar // RUN: %clang_cc1 %s -E | grep "movl %eax"
2426056acSEli Friedman // PR4132
32f621b72SEli Friedman #define R1E %eax
4426056acSEli Friedman #define epilogue(r1) movl r1 ## E;
5426056acSEli Friedman epilogue(R1)
6426056acSEli Friedman 
7