bolt/deps/llvm-18.1.8/clang/test/CodeGen/X86/x86_64-arguments-darwin.c

17 lines
261 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s| FileCheck %s
// CHECK: declare void @func(i64, double)
typedef struct _str {
union {
long double a;
long c;
};
} str;
void func(str s);
str ss;
void f9122143(void)
{
func(ss);
}