diff options
| author | Chad Rosier <mcrosier@apple.com> | 2012-04-17 00:35:38 +0000 |
|---|---|---|
| committer | Chad Rosier <mcrosier@apple.com> | 2012-04-17 00:35:38 +0000 |
| commit | a750d46c9fac0fc28782e2ea2eba2e554f4ab6ef (patch) | |
| tree | af919d5e64050bc03c2d9a371c228ccd0ff908df /clang | |
| parent | e63746195db0a3edff1215f36cb677be6e327eae (diff) | |
| download | bcm5719-llvm-a750d46c9fac0fc28782e2ea2eba2e554f4ab6ef.tar.gz bcm5719-llvm-a750d46c9fac0fc28782e2ea2eba2e554f4ab6ef.zip | |
Make sure EmitMoveFromReturnSlot is passing the correct alignment to
EmitFinalDestCopy (and thus pass EmitAggregateCopy the correct alignment).
rdar://11220251
llvm-svn: 154883
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/CodeGen/CGExprAgg.cpp | 2 | ||||
| -rw-r--r-- | clang/test/CodeGen/packed-nest-unpacked.c | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExprAgg.cpp b/clang/lib/CodeGen/CGExprAgg.cpp index 2103026a84f..d345154f013 100644 --- a/clang/lib/CodeGen/CGExprAgg.cpp +++ b/clang/lib/CodeGen/CGExprAgg.cpp @@ -238,7 +238,7 @@ void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue Src) { // Otherwise, do a final copy, assert(Dest.getAddr() != Src.getAggregateAddr()); - EmitFinalDestCopy(E, Src, /*Ignore*/ true); + EmitFinalDestCopy(E, Src, /*Ignore*/ true, Dest.getAlignment().getQuantity()); } /// EmitFinalDestCopy - Perform the final copy to DestPtr, if desired. diff --git a/clang/test/CodeGen/packed-nest-unpacked.c b/clang/test/CodeGen/packed-nest-unpacked.c index 37514733313..d10a88a5e34 100644 --- a/clang/test/CodeGen/packed-nest-unpacked.c +++ b/clang/test/CodeGen/packed-nest-unpacked.c @@ -4,6 +4,7 @@ struct X { int x[6]; }; struct Y { char x[13]; struct X y; } __attribute((packed)); struct Y g; void f(struct X); +struct X foo(void); // <rdar://problem/10463337> struct X test1() { @@ -37,3 +38,10 @@ int test5() { // CHECK: load i32* getelementptr inbounds (%struct.Y* @g, i32 0, i32 1, i32 0, i64 0), align 1 return g.y.x[0]; } + +// <rdar://problem/11220251> +void test6() { + // CHECK: @test6 + // CHECK: call void @llvm.memcpy.p0i8.p0i8.i64(i8* bitcast (%struct.X* getelementptr inbounds (%struct.Y* @g, i32 0, i32 1) to i8*), i8* %0, i64 24, i32 1, i1 false) + g.y = foo(); +} |

