We should check that existing cast operation has the appropriate opcode before we...
[oota-llvm.git] / test / CFrontend / 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 }