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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83419.c
blob
3d4f1d2770111310f5ddb997abf70fe485571a20
1
/* PR debug/83419 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fcompare-debug" } */
4
5
int
a
,
b
;
6
void
foo
(
int
, ...);
7
8
void
9
bar
(
void
)
10
{
11
if
(
a
||
1
==
b
)
12
foo
(
1
);
13
else
14
0
;
15
foo
(
1
,
0
);
16
}