From b39be1f38eddb47f2898fed512901e6f27aeb45e Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Tue, 10 Sep 2013 05:14:39 +0000 Subject: [PATCH] Generate code for the move assignment operator using memcpy, the same as we do for the copy assignment operator. llvm-svn: 190385 --- clang/lib/CodeGen/CodeGenFunction.cpp | 3 ++- clang/test/CodeGenCXX/move-assignment.cpp | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 clang/test/CodeGenCXX/move-assignment.cpp diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 20352f9..c9279a2 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -702,7 +702,8 @@ void CodeGenFunction::GenerateCode(GlobalDecl GD, llvm::Function *Fn, // clones the body of the function call operator (but is actually static). EmitLambdaStaticInvokeFunction(cast(FD)); } else if (FD->isDefaulted() && isa(FD) && - cast(FD)->isCopyAssignmentOperator()) { + (cast(FD)->isCopyAssignmentOperator() || + cast(FD)->isMoveAssignmentOperator())) { // Implicit copy-assignment gets the same special treatment as implicit // copy-constructors. emitImplicitAssignmentOperatorBody(Args); diff --git a/clang/test/CodeGenCXX/move-assignment.cpp b/clang/test/CodeGenCXX/move-assignment.cpp new file mode 100644 index 0000000..3653eab --- /dev/null +++ b/clang/test/CodeGenCXX/move-assignment.cpp @@ -0,0 +1,26 @@ +// RUN: %clang_cc1 -emit-llvm -std=c++11 -o - %s -triple x86_64-pc-linux-gnu | FileCheck %s + +struct A { + A &operator=(A&&); +}; + +struct B { + A a; + int i; + bool b; + char c; + long l; + float f; +}; + +void test1() { + B b1, b2; + b1 = static_cast(b2); +} + +// CHECK-LABEL: define {{.*}} @_ZN1BaSEOS_ +// CHECK: call {{.*}} @_ZN1AaSEOS_ +// CHECK-NOT: store +// CHECK: call {{.*}}memcpy{{.*}}, i64 24 +// CHECK-NOT: store +// CHECK: ret -- 2.7.4