xref: /aosp_15_r20/external/clang/test/CodeGen/exact-div-expr.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm %s -o - -O1 | grep ashr
2 // RUN: %clang_cc1 -emit-llvm %s -o - -O1 | not grep sdiv
3 
test(int * A,int * B)4 long long test(int *A, int *B) {
5   return A-B;
6 }
7