builtin_01_alloca.c (86B)
1 int test_main(void) { 2 int* p = (int*)__builtin_alloca(4); 3 *p = 42; 4 return *p; 5 }