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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
go.go-torture
/
execute
/
array-1.go
blob
7b34eca192231f528a3c19b2deecadce63c2bd0d
1
package
main
2
var
a
[
2
]
int
;
3
func
fn
() {
4
a
[
0
] =
1
;
5
a
[
1
] =
1
;
6
}
7
func
main
() {
8
fn
();
9
if
a
[
0
] !=
a
[
1
] {
panic
(
0
) }
10
}