llvm-gcc checks the static asm variable is valid in ValidateRegisterVariable. Make this work for PPC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78051 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2009-08-04 04:48:31 +00:00
parent 0a0193edf9
commit 27d703b30f

View File

@ -1,6 +1,10 @@
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
int foo() {
#ifdef __ppc__
register int X __asm__("r1");
#else
register int X __asm__("ebx");
#endif
return X;
}