summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/x86-64-abi-sret-vs-2word-struct-param.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-05-12 00:21:44 +0000
committerBill Wendling <isanbard@gmail.com>2012-05-12 00:21:44 +0000
commit53b4a10736aff06a4d8fae0b9a6acea1a41baf46 (patch)
tree813b7589e5221bb70d952b850b8b5a7d7dae6550 /test/CodeGenCXX/x86-64-abi-sret-vs-2word-struct-param.cpp
parentb524fdf0333c370917528bbc0a215d1bf2be984a (diff)
Merging r156047:
------------------------------------------------------------------------ r156047 | rjmccall | 2012-05-02 18:34:46 -0700 (Wed, 02 May 2012) | 4 lines Merge x86-64-abi-sret-vs-2word-struct-param.cpp into the generic x86_64-arguments.cpp test file and be sure to test the coerced case as well. Thanks to Wei-Ren Chen for bringing this test to my attention. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_31@156673 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/x86-64-abi-sret-vs-2word-struct-param.cpp')
-rw-r--r--test/CodeGenCXX/x86-64-abi-sret-vs-2word-struct-param.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/CodeGenCXX/x86-64-abi-sret-vs-2word-struct-param.cpp b/test/CodeGenCXX/x86-64-abi-sret-vs-2word-struct-param.cpp
deleted file mode 100644
index 1aa80f2d6e..0000000000
--- a/test/CodeGenCXX/x86-64-abi-sret-vs-2word-struct-param.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
-// XTARGET: x86
-// PR4242
-// (PR 4242 bug is on 64-bit only, test passes on x86-32 as well)
-
-struct S {
- void* data[3];
-};
-
-struct T {
- void* data[2];
-};
-
-// CHECK: %struct.T* byval
-extern "C" S fail(int, int, int, int, T t, void* p) {
- S s;
- s.data[0] = t.data[0];
- s.data[1] = t.data[1];
- s.data[2] = p;
- return s;
-}
-
-// CHECK: %struct.T* byval
-extern "C" S* succeed(S* sret, int, int, int, int, T t, void* p) {
- sret->data[0] = t.data[0];
- sret->data[1] = t.data[1];
- sret->data[2] = p;
- return sret;
-}