Remove building with NOCRYPTO option
[minix.git] / tests / usr.bin / xlint / lint1 / d_gcc_compound_statements2.c
blobfa1ee67302c58d1ac35fc0982bb268d674b88b30
1 /* GCC compound statements with non-expressions */
2 struct cpu_info {
3 int bar;
4 };
6 int
7 main(void)
9 return ({
10 struct cpu_info *__ci;
11 __asm__ volatile("movl %%fs:4,%0":"=r" (__ci));
12 __ci;
13 })->bar;