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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
reassoc-30.c
blob
66289848322ac6d6f2cea8ef71460263fe387322
1
/* PR tree-optimization/57442 */
2
/* { dg-do compile } */
3
/* { dg-options "-O1" } */
4
short
a
;
5
unsigned
b
;
6
long
c
;
7
int
d
;
8
9
void
f
(
void
)
10
{
11
b
=
a
? : (
a
=
b
) -
c
+ (
d
- (
b
+
b
));
12
}
13