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
2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
alpha
/
pr42448-1.c
blob
4e2c376e39dc782130702346520451175a8c44d3
1
/* { dg-do run } */
2
/* { dg-options "-mcpu=21064 -O0" } */
3
4
extern
void
abort
(
void
);
5
6
struct
S2180
7
{
8
char
t
;
9
_Complex
char
u
[
2
];
10
};
11
12
struct
S2180 s2180
;
13
14
int
15
main
(
void
)
16
{
17
volatile
struct
S2180 x
;
18
19
s2180
.
u
[
1
] =
3
+
4
i
;
20
21
x
.
u
[
1
] =
s2180
.
u
[
1
];
22
23
if
(
x
.
u
[
1
] !=
s2180
.
u
[
1
])
24
abort
();
25
26
return
0
;
27
}