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
* gcc.dg/const-elim-1.c: Remove xfail for xtensa-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20040217-1.c
blob
7ca7388fe7cf5b5ad74c4b7fce1ce88007a76005
1
/* This used to ICE on s390x due to a bug in simplify_if_then_else. */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
extern
void
use
(
int
);
6
void
test
(
void
)
7
{
8
union
9
{
10
unsigned long
ul
;
11
signed char
sc
;
12
}
u
;
13
14
u
.
sc
=
8
;
15
u
.
sc
&=
25
;
16
17
use
(
u
.
sc
);
18
}
19