X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FAssembler%2Faggregate-constant-values.ll;h=9e68e06758911ac9c17710f45cc0d306edc0683a;hb=3af13568fbd7dc26d9274a19838c52c6875248bc;hp=a37d03ebb3875038aff5bf9841144778184523e5;hpb=7dc1def1623748b6c2f1812f1bf2e0153759c8b9;p=oota-llvm.git diff --git a/test/Assembler/aggregate-constant-values.ll b/test/Assembler/aggregate-constant-values.ll index a37d03ebb38..9e68e067589 100644 --- a/test/Assembler/aggregate-constant-values.ll +++ b/test/Assembler/aggregate-constant-values.ll @@ -1,25 +1,49 @@ -; RUN: llvm-as < %s | llvm-dis | grep 7 | count 3 +; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s +; RUN: verify-uselistorder %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