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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr40328.c
blob
e378e63c00abbc9c90b2500fd5fb6f2baf142e1f
1
/* { dg-do compile } */
2
/* { dg-options "-fno-tree-sra" } */
3
4
_Complex
float
foo
(
void
)
5
{
6
_Complex
float
a
[
64
] = {};
7
_Complex
float
x
;
8
x
=
a
[
1
];
9
return
x
;
10
}
11