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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr103837.c
blob
43593d52b6c916f0ef7e1e151b5136ef901ef44b
1
/* PR rtl-optimization/103837 */
2
/* { dg-do compile } */
3
/* { dg-options "-Og -fcompare-debug -fmove-loop-invariants -fnon-call-exceptions -fexceptions -fdelete-dead-exceptions -fno-tree-dce -w" } */
4
5
unsigned long int
6
foo
(
int
x
)
7
{
8
double
a
;
9
int
b
;
10
unsigned long int
ret
=
a
;
11
12
for
(;;)
13
{
14
b
= !!((
int
)
a
);
15
a
=
x
;
16
}
17
18
return
ret
;
19
}