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