Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
2005-01-02-PointerDifference.c
blob: 1114ef5c25de4604a3865ea59898b6676f10f3b0 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
// CHECK: sdiv exact
int
Diff
(
int
*
P
,
int
*
Q
)
{
return
P
-
Q
;
}