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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr70843.c
blob
c3c9212a0f5ef494fa80667f25bb944cb9a1b1ae
1
/* PR middle-end/70843 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
int
6
foo
(
int
x
,
int
y
)
7
{
8
return
({
int
a
=
5
;
a
+=
x
;
a
*=
y
;
a
; }) ? :
2
;
9
}