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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr26719.c
blob
3c87df17bb87a31f8fc54e176262d66a6944e518
1
/* { dg-do compile } */
2
/* { dg-do run } */
3
/* { dg-options "-O2" } */
4
5
void
abort
(
void
);
6
7
int
table
[
32
][
256
];
8
9
int
main
(
void
)
10
{
11
int
i
,
j
;
12
13
for
(
i
=
0
;
i
<
32
;
i
++)
14
for
(
j
=
0
;
j
<
256
;
j
++)
15
table
[
i
][
j
] = ((
signed char
)
j
) *
i
;
16
17
if
(
table
[
9
][
132
] != -
1116
)
18
abort
();
19
20
return
0
;
21
}