repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
etc/protocols - sync with NetBSD-8
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_gcc_compound_statements2.c
blob
fa1ee67302c58d1ac35fc0982bb268d674b88b30
1
/* GCC compound statements with non-expressions */
2
struct
cpu_info
{
3
int
bar
;
4
};
5
6
int
7
main
(
void
)
8
{
9
return
({
10
struct
cpu_info
*
__ci
;
11
__asm__
volatile
(
"movl %%fs:4,%0"
:
"=r"
(
__ci
));
12
__ci
;
13
})->
bar
;
14
}