repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20030331-2.c
blob
2fce78ea97c10bb94369fb3c7ae8fc7933f9643d
1
// { dg-options "" }
2
3
extern
int
printf
(
const char
*, ...);
4
5
int
foo
() {
6
int
yd
;
7
float
in
[
1
][
yd
];
8
9
void
bar
() {
10
printf
(
"%p
\n
"
,
in
[
0
]);
11
}
12
}