repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
X86
/
x86_64-arguments-darwin.c
blob
f89ec74742b806bdac0a7be7d368f943badd3a37
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
;
13
void
f9122143
(
void
)
14
{
15
func
(
ss
);
16
}