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
PR tree-optimization/33562
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr15791-4.c
blob
bc53eb43f7b26db7e6d67d3eb94e9130a10b8eb6
1
/* { dg-do compile } */
2
/* { dg-options "-fdump-tree-gimple" } */
3
4
int
f
(
int
i
,
int
j
)
5
{
6
int
b
[
2
][
2
];
7
if
(&
b
[
1
][
i
] == &
b
[
0
][
j
])
8
return
1
;
9
return
0
;
10
}
11
12
/* { dg-final { scan-tree-dump-times "i == j" 0 "gimple" } } */