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
/
pr58742-1.c
blob
54a0d3f91799fdf809ee5f12e2d32bd1ac0f1a0a
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-cddce1" } */
3
4
int
*
5
fx
(
int
*
b
,
int
*
e
)
6
{
7
__SIZE_TYPE__ p
=
e
-
b
;
8
/* The first forwprop pass should optimize this to return e; */
9
return
b
+
p
;
10
}
11
12
/* { dg-final { scan-tree-dump "return e" "cddce1" } } */