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
PR tree-optimization/84740
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
lto
/
pr64415_1.c
blob
b98dfbd7935fb0de1f7b57fb283d557f2d4843bf
1
/* { dg-options "-g" } */
2
3
extern
int
n
;
4
5
void
bar
(
char
*,
int
);
6
7
inline
void
bar
(
char
*
s
,
int
i
)
8
{
9
char
*
p
=
s
;
10
11
#ifdef V1
12
if
(
i
)
13
#else
14
if
(
n
)
15
#endif
16
*
s
=
0
;
17
}