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
Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr33655.c
blob
2f9da65aec41eb78a333900a3348274b62e2b371
1
/* { dg-do compile } */
2
typedef
struct
{
3
unsigned long
attr
;
4
int
chars
[
2
];
5
}
cchar_t
;
6
typedef
struct
_win_st
{
7
cchar_t _bkgrnd
;
8
}
WINDOW
;
9
void
render_char
(
WINDOW
*
win
,
cchar_t ch
)
10
{
11
if
((
ch
).
chars
[
0
] ==
L
' '
12
&& (
ch
).
chars
[
1
] ==
L
'\0'
)
13
win
->
_bkgrnd
=
ch
;
14
}