llvm-mirror/test/CFrontend/exact-div-expr.c
Chris Lattner f2fd4e185e new testcase
llvm-svn: 39882
2007-07-15 22:30:34 +00:00

7 lines
134 B
C

// RUN: %llvmgcc -S %s -o - -O | grep ashr
// RUN: %llvmgcc -S %s -o - -O | not grep sdiv
int test(int *A, int *B) {
return A-B;
}