Fix the testcase for PR4132.

llvm-svn: 70796
This commit is contained in:
Eli Friedman 2009-05-03 19:54:21 +00:00
parent 055797b789
commit 426056acf2
1 changed files with 4 additions and 3 deletions

View File

@ -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)