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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr89223.c
blob
1e828118ecb07341d0ace684c0aa858d580e378a
1
/* { dg-do compile { target int128 } } */
2
3
int
a
[
5
];
4
unsigned
__int128 b
;
5
void
c
()
6
{
7
b
=
4
;
8
for
(;;
b
--)
9
a
[
b
] = ({
a
[
b
+
b
]; });
10
}