aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/copy-constructor-synthesis.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-11-16 21:47:41 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-11-16 21:47:41 +0000
commit6d10ac9ef3435993d0ceae7782fbeee7659af30e (patch)
tree49cfb0bf74a3d0a47cf37d9712fc1cc61ba2a27a /test/CodeGenCXX/copy-constructor-synthesis.cpp
parenta4923eb7c4b04d360cb2747641a5e92818edf804 (diff)
Implement a few more cases for copy constructor synthesis.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/copy-constructor-synthesis.cpp')
-rw-r--r--test/CodeGenCXX/copy-constructor-synthesis.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeGenCXX/copy-constructor-synthesis.cpp b/test/CodeGenCXX/copy-constructor-synthesis.cpp
index 60552a3893..3b8f7821ab 100644
--- a/test/CodeGenCXX/copy-constructor-synthesis.cpp
+++ b/test/CodeGenCXX/copy-constructor-synthesis.cpp
@@ -44,6 +44,8 @@ struct X : M, N, P { // ...
const char *name;
unsigned bf1 : 8;
unsigned bf2 : 16;
+ int arr[2];
+ _Complex float complex;
union {
int au_i1;