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
/
pr85300.c
blob
87a30b8d419a2b5510fdaa3c2f8b195e21cbef85
1
/* PR rtl-optimization/85300 */
2
/* { dg-do compile } */
3
/* { dg-options "-O1 -g -funroll-all-loops -fno-tree-ter -fno-web" } */
4
5
void
6
foo
(
double
x
,
unsigned char
y
)
7
{
8
while
((
int
)
x
<
1
)
9
{
10
float
a
;
11
12
a
=
y
|
0x100
;
13
y
=
0
;
14
x
=
a
;
15
}
16
}