Add remaining AVX instructions (most of them dealing with GR64 destinations. This...
[oota-llvm.git] / test / FrontendC / 2004-03-16-AsmRegisterCrash.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3 int foo() {
4 #ifdef __ppc__
5   register int X __asm__("r1");
6 #else
7   register int X __asm__("ebx");
8 #endif
9   return X;
10 }