Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
44cbbb05f544c5ee171000b2abf905aa7dc5340d
/
.
/
test
/
Analysis
/
exercise-ps.c
blob: 0d5af4bcde2ddaff806b40868d0f34c77e71341d [
file
] [
log
] [
blame
]
// RUN: clang -checker-simple -verify %s
//
// Just exercise the analyzer (no assertions).
static
const
char
*
f1
(
const
char
*
x
,
char
*
y
)
{
while
(*
x
!=
0
)
{
*
y
++
=
*
x
++;
}
}