repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
debug
/
debug-7.c
blob
d424e91f304ecd3c039990737a237218badaa59b
1
/* { dg-do compile } */
2
/* { dg-options "-dA" } */
3
/* PR debug/12934. */
4
5
static
inline
int
foo
()
6
{
7
return
42
;
8
}
9
10
void
bar
(
int
*);
11
12
void
baz
()
13
{
14
int
a
[
foo
()];
15
bar
(
a
);
16
}