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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr111845.c
blob
1bcb4f88e6f18cd425aa6fb9ae1e3c56ab863983
1
/* PR tree-optimization/111845 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 --param tree-reassoc-width=2" } */
4
5
int
a
,
b
;
6
unsigned int
c
,
d
,
e
;
7
8
void
9
foo
(
int
x
)
10
{
11
b
+=
d
;
12
c
+=
b
<
d
;
13
b
+=
e
=
a
<
x
;
14
c
+=
b
;
15
c
+=
b
<
e
;
16
}