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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr46088.c
blob
c0ff920eea9acf4c144d606803820a19a6d8cce5
1
/* PR target/46088 */
2
/* { dg-do compile } */
3
/* { dg-options "-Os -fnon-call-exceptions -fpeel-loops" } */
4
5
extern
void
bar
(
void
);
6
7
void
8
foo
(
int
i
)
9
{
10
if
(
i
>>
3
)
11
bar
();
12
}