Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -emit-llvm %s -o - -O1 | grep ashr
      2 // RUN: %clang_cc1 -emit-llvm %s -o - -O1 | not grep sdiv
      3 
      4 long long test(int *A, int *B) {
      5   return A-B;
      6 }
      7