[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Preprocessor / macro_paste_spacing2.c
blob02cc12f5b0231c8baa922daf45c42a496e99ceeb
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)