* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr47237.c
blob08025313389f1182ace4aaced0f531d72b0fcad9
1 /* { dg-xfail-if "can cause stack underflow" { nios2-*-* } "*" "" } */
2 /* { dg-require-effective-target untyped_assembly } */
3 #define INTEGER_ARG 5
5 extern void abort(void);
7 static void foo(int arg)
9 if (arg != INTEGER_ARG)
10 abort();
13 static void bar(int arg)
15 foo(arg);
16 __builtin_apply(foo, __builtin_apply_args(), 16);
19 int main(void)
21 bar(INTEGER_ARG);
23 return 0;