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
/
pr42461.c
blob
0518bfd97368cc4622c3198f33d3b48dc7af4575
1
/* PR rtl-optimization/42461 */
2
/* Reported by Patrick Pelissier <patrick.pelissier@gmail.com> */
3
4
/* { dg-do link } */
5
/* { dg-options "-O2" } */
6
7
extern
int
link_failure
(
int
)
__attribute__
((
pure
));
8
9
int
main
(
void
)
10
{
11
if
(
link_failure
(
0
) <
1
)
12
__builtin_unreachable
();
13
return
0
;
14
}