Add preliminary v2i32 support for SPU backend. As there are no
[oota-llvm.git] / test / FrontendC / 2003-10-06-NegateExprType.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
4 extern int A[10];
5 void Func(int *B) { 
6   B - &A[5]; 
7 }
8