diff options
author | dim <dim@FreeBSD.org> | 2012-04-14 13:54:10 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-04-14 13:54:10 +0000 |
commit | 1fc08f5e9ef733ef1ce6f363fecedc2260e78974 (patch) | |
tree | 19c69a04768629f2d440944b71cbe90adae0b615 /test/Assembler/aggregate-constant-values.ll | |
parent | 07637c87f826cdf411f0673595e9bc92ebd793f2 (diff) | |
download | FreeBSD-src-1fc08f5e9ef733ef1ce6f363fecedc2260e78974.zip FreeBSD-src-1fc08f5e9ef733ef1ce6f363fecedc2260e78974.tar.gz |
Vendor import of llvm trunk r154661:
http://llvm.org/svn/llvm-project/llvm/trunk@r154661
Diffstat (limited to 'test/Assembler/aggregate-constant-values.ll')
-rw-r--r-- | test/Assembler/aggregate-constant-values.ll | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/test/Assembler/aggregate-constant-values.ll b/test/Assembler/aggregate-constant-values.ll index a37d03e..d0aab81 100644 --- a/test/Assembler/aggregate-constant-values.ll +++ b/test/Assembler/aggregate-constant-values.ll @@ -1,25 +1,48 @@ -; RUN: llvm-as < %s | llvm-dis | grep 7 | count 3 +; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s +; CHECK: @foo +; CHECK: store { i32, i32 } { i32 7, i32 9 }, { i32, i32 }* %x +; CHECK: ret define void @foo({i32, i32}* %x) nounwind { store {i32, i32}{i32 7, i32 9}, {i32, i32}* %x ret void } + +; CHECK: @foo_empty +; CHECK: store {} zeroinitializer, {}* %x +; CHECK: ret define void @foo_empty({}* %x) nounwind { store {}{}, {}* %x ret void } + +; CHECK: @bar +; CHECK: store [2 x i32] [i32 7, i32 9], [2 x i32]* %x +; CHECK: ret define void @bar([2 x i32]* %x) nounwind { store [2 x i32][i32 7, i32 9], [2 x i32]* %x ret void } + +; CHECK: @bar_empty +; CHECK: store [0 x i32] undef, [0 x i32]* %x +; CHECK: ret define void @bar_empty([0 x i32]* %x) nounwind { store [0 x i32][], [0 x i32]* %x ret void } + +; CHECK: @qux +; CHECK: store <{ i32, i32 }> <{ i32 7, i32 9 }>, <{ i32, i32 }>* %x +; CHECK: ret define void @qux(<{i32, i32}>* %x) nounwind { store <{i32, i32}><{i32 7, i32 9}>, <{i32, i32}>* %x ret void } + +; CHECK: @qux_empty +; CHECK: store <{}> zeroinitializer, <{}>* %x +; CHECK: ret define void @qux_empty(<{}>* %x) nounwind { store <{}><{}>, <{}>* %x ret void |