llvm-mirror/test/FrontendC/exact-div-expr.c

7 lines
142 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o - -O1 | grep ashr
// RUN: %llvmgcc -S %s -o - -O1 | not grep sdiv
2007-07-15 22:30:34 +00:00
long long test(int *A, int *B) {
2007-07-15 22:30:34 +00:00
return A-B;
}