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
/
pr103793.c
blob
d7ed721c973fc3cc79699b96c9d0b7c2fcaa7514
1
/* { dg-do compile } */
2
/* { dg-options "-O3 -fno-guess-branch-probability" } */
3
4
extern
void
bar
(
void
);
5
6
void
7
foo
(
int
x
,
int
w
)
8
{
9
for
(
int
y
;
y
<
w
;
y
++)
10
if
(
y
<
x
)
11
bar
();
12
}