blob: a2c12a0b3f6e8defd0ea340fef076bdb6eb6457c [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o - -O1 | grep ashr
2// RUN: %clang_cc1 -emit-llvm %s -o - -O1 | not grep sdiv
3
4long long test(int *A, int *B) {
5 return A-B;
6}