When removing a function from the function set and adding it to deferred, we
[llvm.git] / test / FrontendC / pr5406.c
blob0b1f277592fb71e91b704dbf392c663c44a66a7e
1 // RUN: %llvmgcc %s -S -O0 -o - | FileCheck %s
2 // PR 5406
4 // XFAIL: *
5 // XTARGET: arm
7 typedef struct { char x[3]; } A0;
8 void foo (int i, ...);
11 // CHECK: call void (i32, ...)* @foo(i32 1, i32 {{.*}}) nounwind
12 int main (void)
14 A0 a3;
15 a3.x[0] = 0;
16 a3.x[0] = 0;
17 a3.x[2] = 26;
18 foo (1, a3 );
19 return 0;