11 lines
114 B
C
11 lines
114 B
C
|
/* GCC compound statements with void type */
|
||
|
|
||
|
void
|
||
|
main(void)
|
||
|
{
|
||
|
({
|
||
|
void *v;
|
||
|
__asm__ volatile("noop");
|
||
|
});
|
||
|
}
|