xref: /aosp_15_r20/external/clang/test/CodeGen/2005-01-02-PointerDifference.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
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