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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr42685.c
blob
29d6381cf5eee895d5c8a05fde4e20d2ffca365c
1
/* { dg-do compile } */
2
/* { dg-options "-O -funroll-loops -fcompare-debug" } */
3
4
struct
S
{
5
int
i
;
6
};
7
8
extern
void
baz
(
int
);
9
10
static
inline
void
bar
(
struct
S
*
s
)
11
{
12
baz
(
s
->
i
);
13
}
14
15
void
foo
(
int
*
w
,
int
cond
,
struct
S
*
s
)
16
{
17
int
i
,
n
=
0
;
18
while
(*
w
++ !=
0
)
n
++;
19
for
(
i
=
0
;
i
<
n
;
i
++)
20
if
(
cond
==
0
)
21
bar
(
s
+
i
);
22
}