repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr115694.C
blob
bbce47decf830b6da9e85db3a61c2f83b6975abd
1
// { dg-do compile }
2
3
_Complex a;
4
typedef struct {
5
double a[2];
6
} b;
7
void c(b);
8
void d()
9
{
10
_Complex b1 = a;
11
b t = __builtin_bit_cast (b, b1);
12
c(t);
13
}