repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Driver: tweak handling of '--analyze' to invoke
[clang.git]
/
test
/
Sema
/
check-increment.c
blob
070ea74f680012f5f43797c30c38f3c94cc39d0c
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
int
printf
(
const char
*, ...);
4
typedef
int
*
pint
;
5
int
main
() {
6
int
a
[
5
] = {
0
};
7
pint p
=
a
;
8
p
++;
9
printf
(
"%d
\n
"
, *
p
);
10
}