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
Use conditional internal functions in if-conversion
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
alpha
/
pr42448-2.c
blob
aeebad2809b4507e0d2696197be0e7611c65264d
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
[
4
];
10
};
11
12
struct
S2180 s2180
;
13
14
int
15
main
(
void
)
16
{
17
volatile
struct
S2180 x
;
18
19
s2180
.
u
[
3
] =
3
+
4
i
;
20
21
x
.
u
[
3
] =
s2180
.
u
[
3
];
22
23
if
(
x
.
u
[
3
] !=
s2180
.
u
[
3
])
24
abort
();
25
26
return
0
;
27
}