diff options
author | Lang Hames <lhames@gmail.com> | 2013-02-17 07:22:09 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2013-02-17 07:22:09 +0000 |
commit | bf122744e5baa14f7b88745de02b15d638a5f154 (patch) | |
tree | e4a6bac07ffa8bdbbc896638d3575e506d0df245 /clang/test/CodeGenCXX/copy-assign-synthesis-1.cpp | |
parent | 7a786f8c7ac5250b54648b4063f271ef6c14d90f (diff) | |
download | bcm5719-llvm-bf122744e5baa14f7b88745de02b15d638a5f154.tar.gz bcm5719-llvm-bf122744e5baa14f7b88745de02b15d638a5f154.zip |
Re-apply r174919 - smarter copy/move assignment/construction, with fixes for
bitfield related issues.
The original commit broke Takumi's builder. The bug was caused by bitfield sizes
being determined by their underlying type, rather than the field info. A similar
issue with bitfield alignments showed up on closer testing. Both have been fixed
in this patch.
llvm-svn: 175389
Diffstat (limited to 'clang/test/CodeGenCXX/copy-assign-synthesis-1.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/copy-assign-synthesis-1.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/test/CodeGenCXX/copy-assign-synthesis-1.cpp b/clang/test/CodeGenCXX/copy-assign-synthesis-1.cpp index 46d04836411..5d09b5430a1 100644 --- a/clang/test/CodeGenCXX/copy-assign-synthesis-1.cpp +++ b/clang/test/CodeGenCXX/copy-assign-synthesis-1.cpp @@ -96,14 +96,8 @@ int main() { // CHECK-LP64: .globl __ZN1XaSERKS_ // CHECK-LP64: .weak_definition __ZN1XaSERKS_ // CHECK-LP64: __ZN1XaSERKS_: -// CHECK-LP64: .globl __ZN1QaSERKS_ -// CHECK-LP64: .weak_definition __ZN1QaSERKS_ -// CHECK-LP64: __ZN1QaSERKS_: // CHECK-LP32: .globl __ZN1XaSERKS_ // CHECK-LP32: .weak_definition __ZN1XaSERKS_ // CHECK-LP32: __ZN1XaSERKS_: -// CHECK-LP32: .globl __ZN1QaSERKS_ -// CHECK-LP32: .weak_definition __ZN1QaSERKS_ -// CHECK-LP32: __ZN1QaSERKS_: |