New testcase for PR297

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12448 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-03-16 21:52:24 +00:00
parent e40eae7370
commit 0eded5c567

View File

@ -0,0 +1,4 @@
int foo() {
register int X __asm__("ebx");
return X;
}