diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:44:14 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:44:14 +0000 |
commit | 2b6b257f4e5503a7a2675bdb8735693db769f75c (patch) | |
tree | e85e046ae7003fe3bcc8b5454cd0fa3f7407b470 /test/CodeGen/vectorcall.c | |
parent | b4348ed0b7e90c0831b925fbee00b5f179a99796 (diff) | |
download | src-test2-2b6b257f4e5503a7a2675bdb8735693db769f75c.tar.gz src-test2-2b6b257f4e5503a7a2675bdb8735693db769f75c.zip |
Notes
Diffstat (limited to 'test/CodeGen/vectorcall.c')
-rw-r--r-- | test/CodeGen/vectorcall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/vectorcall.c b/test/CodeGen/vectorcall.c index 9ee35b1a02b6..b38d5e5fbc5b 100644 --- a/test/CodeGen/vectorcall.c +++ b/test/CodeGen/vectorcall.c @@ -9,9 +9,9 @@ void __vectorcall v2(char a, char b) {} // CHECK: define x86_vectorcallcc void @"\01v2@@8"(i8 inreg signext %a, i8 inreg signext %b) // X64: define x86_vectorcallcc void @"\01v2@@16"(i8 %a, i8 %b) -struct Small { int a; }; +struct Small { int x; }; void __vectorcall v3(int a, struct Small b, int c) {} -// CHECK: define x86_vectorcallcc void @"\01v3@@12"(i32 inreg %a, %struct.Small* byval align 4 %b, i32 inreg %c) +// CHECK: define x86_vectorcallcc void @"\01v3@@12"(i32 inreg %a, i32 %b.0, i32 inreg %c) // X64: define x86_vectorcallcc void @"\01v3@@24"(i32 %a, i32 %b.coerce, i32 %c) struct Large { int a[5]; }; |