• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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