diff options
author | dim <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
commit | 3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65 (patch) | |
tree | dbbd4047878da71c1a706e26ce05b4e7791b14cc /test/CodeGen/exprs.c | |
parent | 38d6f2e7f2ce51a5b3836d26596c6c34a3288752 (diff) | |
download | FreeBSD-src-3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65.zip FreeBSD-src-3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65.tar.gz |
Vendor import of clang trunk r238337:
https://llvm.org/svn/llvm-project/cfe/trunk@238337
Diffstat (limited to 'test/CodeGen/exprs.c')
-rw-r--r-- | test/CodeGen/exprs.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/test/CodeGen/exprs.c b/test/CodeGen/exprs.c index 2a22169..59afa80 100644 --- a/test/CodeGen/exprs.c +++ b/test/CodeGen/exprs.c @@ -127,9 +127,9 @@ int f11(long X) { return A[X]; // CHECK: [[Xaddr:%[^ ]+]] = alloca i64, align 8 -// CHECK: load {{.*}}* [[Xaddr]] -// CHECK-NEXT: getelementptr inbounds [100 x i32]* %A, i32 0, -// CHECK-NEXT: load i32* +// CHECK: load {{.*}}, {{.*}}* [[Xaddr]] +// CHECK-NEXT: getelementptr inbounds [100 x i32], [100 x i32]* %A, i32 0, +// CHECK-NEXT: load i32, i32* } int f12() { @@ -184,3 +184,14 @@ void f17() { extfunc(x); // CHECK: add nsw i128 %{{.}}, -1 } + +// PR23597: We should evaluate union cast operands even if the cast is unused. +typedef union u { + int i; +} strct; +int returns_int(void); +void f18() { + (strct)returns_int(); +} +// CHECK-LABEL: define void @f18() +// CHECK: call i32 @returns_int() |