xref: /llvm-project/clang/test/CodeGen/X86/x86_64-arguments-darwin.c (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s| FileCheck %s
2 
3 // CHECK: declare void @func(i64, double)
4 typedef struct _str {
5   union {
6     long double a;
7     long c;
8   };
9 } str;
10 
11 void func(str s);
12 str ss;
f9122143(void)13 void f9122143(void)
14 {
15   func(ss);
16 }
17