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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
loop-29.c
blob
5cfc36727f576c66678ad39bee70f492758d1f2f
1
/* PR 31885 */
2
3
/* { dg-do compile } */
4
/* { dg-options "-O2 -fdump-tree-optimized" } */
5
6
struct
s
{
7
int
*
blah
;
8
};
9
10
static struct
s array
[] = { {
0
} };
11
12
void
13
foo
(
struct
s
*
p
)
14
{
15
struct
s
*
q
= &
array
[
1
];
16
while
(
p
<
q
)
17
p
++;
18
}
19
20
/* { dg-final { scan-tree-dump-not "if" "optimized" } } */