diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2012-04-16 03:54:45 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2012-04-16 03:54:45 +0000 |
commit | 7f1ff60021c534cef6372c693b42498fd34bde3c (patch) | |
tree | a7c4ffe90f62922e36db0031f5138574d362234a /clang/test/CodeGen/packed-nest-unpacked.c | |
parent | 1ac08679fd6b34b06e26c6fbac1fcbe8cc404a1a (diff) | |
download | bcm5719-llvm-7f1ff60021c534cef6372c693b42498fd34bde3c.tar.gz bcm5719-llvm-7f1ff60021c534cef6372c693b42498fd34bde3c.zip |
Propagate alignment on lvalues through EmitLValueForField. PR12395.
llvm-svn: 154789
Diffstat (limited to 'clang/test/CodeGen/packed-nest-unpacked.c')
-rw-r--r-- | clang/test/CodeGen/packed-nest-unpacked.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/clang/test/CodeGen/packed-nest-unpacked.c b/clang/test/CodeGen/packed-nest-unpacked.c index af1508ae81d..37514733313 100644 --- a/clang/test/CodeGen/packed-nest-unpacked.c +++ b/clang/test/CodeGen/packed-nest-unpacked.c @@ -1,11 +1,11 @@ // RUN: %clang_cc1 %s -triple x86_64-apple-macosx10.7.2 -emit-llvm -o - | FileCheck %s -// <rdar://problem/10463337> struct X { int x[6]; }; struct Y { char x[13]; struct X y; } __attribute((packed)); struct Y g; void f(struct X); +// <rdar://problem/10463337> struct X test1() { // CHECK: @test1 // CHECK: call void @llvm.memcpy.p0i8.p0i8.i64(i8* {{.*}}, i8* bitcast (%struct.X* getelementptr inbounds (%struct.Y* @g, i32 0, i32 1) to i8*), i64 24, i32 1, i1 false) @@ -24,8 +24,16 @@ void test3(struct X a) { g.y = a; } +// <rdar://problem/10530444> void test4() { // CHECK: @test4 // FIXME: call void @llvm.memcpy.p0i8.p0i8.i64(i8* {{.*}}, i8* bitcast (%struct.X* getelementptr inbounds (%struct.Y* @g, i32 0, i32 1) to i8*), i64 24, i32 1, i1 false) f(g.y); } + +// PR12395 +int test5() { + // CHECK: @test5 + // CHECK: load i32* getelementptr inbounds (%struct.Y* @g, i32 0, i32 1, i32 0, i64 0), align 1 + return g.y.x[0]; +} |