new testcase
[oota-llvm.git] / test / CFrontend / exact-div-expr.c
1 // RUN: %llvmgcc -S %s -o - -O | grep ashr
2 // RUN: %llvmgcc -S %s -o - -O | not grep sdiv
3
4 int test(int *A, int *B) {
5   return A-B;
6 }