Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
a36f3ed3f19ebd78432d967325e9157ec02e1bdf
/
.
/
test
/
CodeGen
/
2008-08-04-void-pointer-arithmetic.c
blob: dbfc107da5cc8e8ff14bb6fb10eee61303cd804c [
file
] [
log
] [
blame
]
Daniel Dunbar
a572887
2009-12-15 20:14:24 +0000
[
diff
] [
blame
]
1
// RUN: %clang_cc1 -emit-llvm -o - %s
Daniel Dunbar
820b033
2008-08-05 00:47:03 +0000
[
diff
] [
blame
]
2
// <rdar://problem/6122967>
3
4
int
f0
(
void
*
a
,
void
*
b
)
{
5
return
a
-
b
;
6
}