Newer
Older
UbixOS / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_gcc_compound_statements2.c
@Charlie Root Charlie Root on 31 Dec 2017 215 bytes More Cleanup
/* GCC compound statements with non-expressions */
struct cpu_info {
	int bar;
};

int
main(void)
{
	return ({
	    struct cpu_info *__ci;
	    __asm__ volatile("movl %%fs:4,%0":"=r" (__ci));
	    __ci;
	})->bar;
}