1 ; RUN: llvm-dis < %s.bc | FileCheck %s
2 ; RUN: verify-uselistorder < %s.bc
4 ; aggregateOperations.3.2.ll.bc was generated by passing this file to llvm-as-3.2.
5 ; The test checks that LLVM does not misread instructions with aggregate operands
6 ; in older bitcode files.
8 define void @extractvalue([4 x i8] %x1, [4 x [4 x i8]] %x2, {{i32, float}} %x3){
10 ; CHECK: %res1 = extractvalue [4 x i8] %x1, 0
11 %res1 = extractvalue [4 x i8] %x1, 0
13 ; CHECK-NEXT: %res2 = extractvalue [4 x [4 x i8]] %x2, 1
14 %res2 = extractvalue [4 x [4 x i8 ]] %x2, 1
16 ; CHECK-NEXT: %res3 = extractvalue [4 x [4 x i8]] %x2, 0, 1
17 %res3 = extractvalue [4 x [4 x i8 ]] %x2, 0, 1
19 ; CHECK-NEXT: %res4 = extractvalue { { i32, float } } %x3, 0, 1
20 %res4 = extractvalue {{i32, float}} %x3, 0, 1
25 define void @insertvalue([4 x [4 x i8 ]] %x1){
27 ; CHECK: %res1 = insertvalue [4 x [4 x i8]] %x1, i8 0, 0, 0
28 %res1 = insertvalue [4 x [4 x i8 ]] %x1, i8 0, 0, 0
30 ; CHECK-NEXT: %res2 = insertvalue [4 x [4 x i8]] undef, i8 0, 0, 0
31 %res2 = insertvalue [4 x [4 x i8 ]] undef, i8 0, 0, 0