aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/exact-div-expr.c
blob: 03626c926528c31d811c27d463f0393d3225fec4 (plain)
1
2
3
4
5
6
// RUN: %llvmgcc -S %s -o - -O | grep ashr
// RUN: %llvmgcc -S %s -o - -O | not grep sdiv

long long test(int *A, int *B) {
  return A-B;
}