1 // RUN: %clang_cc1 %s -E | grep "movl %eax"
2 // PR4132
3 #define R1E %eax
4 #define epilogue(r1) movl r1 ## E;
5 epilogue(R1)
6 
7