diff options
Diffstat (limited to 'clang/test/Preprocessor/macro_paste_spacing2.c')
-rw-r--r-- | clang/test/Preprocessor/macro_paste_spacing2.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/macro_paste_spacing2.c b/clang/test/Preprocessor/macro_paste_spacing2.c new file mode 100644 index 00000000000..460b022b37e --- /dev/null +++ b/clang/test/Preprocessor/macro_paste_spacing2.c @@ -0,0 +1,5 @@ +// RUN: clang-cc %s -E | grep "movl %eax" + +#define R1E %eax +#define epilogue(r1) movl r1; +epilogue(R1E) |