1// RUN: %clang_cc1  %s -emit-llvm -o - | FileCheck %s
2
3// CHECK: sdiv exact
4int Diff(int *P, int *Q) { return P-Q; }
5