Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
3ae9f34f857b87166a6d8f6812f400620410619e
/
.
/
test
/
Analysis
/
ptr-arith.c
blob: 7b66b2f8fe351af2bbdd89976805e6728a8eb935 [
file
] [
log
] [
blame
]
// RUN: clang -analyze -checker-simple -analyzer-store=region -verify %s
void
f1
()
{
int
a
[
10
];
int
*
p
=
a
;
++
p
;
}
char
*
foo
();
void
f2
()
{
char
*
p
=
foo
();
++
p
;
}