Add preliminary v2i32 support for SPU backend. As there are no
[oota-llvm.git] / test / FrontendC / exact-div-expr.c
1 // RUN: %llvmgcc -S %s -o - -O1 | grep ashr
2 // RUN: %llvmgcc -S %s -o - -O1 | not grep sdiv
3
4 long long test(int *A, int *B) {
5   return A-B;
6 }