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
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr57184.c
blob
319d3fd5312f817045e77cee5a7f74e8269e4442
1
/* PR debug/57184 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -g" } */
4
5
struct
S
{};
6
void
bar
(
struct
S
*
const
);
7
static struct
S
*
const
c
= &(
struct
S
) {};
8
9
void
10
foo
(
void
)
11
{
12
bar
(
c
);
13
}