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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20030331-2.c
blob
5dc164fc4fe2d930a0af3ee46da0b23b1e9fb489
1
// { dg-options "" }
2
/* { dg-require-effective-target alloca } */
3
4
extern
int
printf
(
const char
*, ...);
5
6
int
foo
() {
7
int
yd
;
8
float
in
[
1
][
yd
];
9
10
void
bar
() {
11
printf
(
"%p
\n
"
,
in
[
0
]);
12
}
13
}