[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git] / clang / test / CodeGen / X86 / x86_64-arguments-darwin.c
blobf89ec74742b806bdac0a7be7d368f943badd3a37
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s| FileCheck %s
3 // CHECK: declare void @func(i64, double)
4 typedef struct _str {
5 union {
6 long double a;
7 long c;
8 };
9 } str;
11 void func(str s);
12 str ss;
13 void f9122143(void)
15 func(ss);