brintos

brintos / llvm-project-archived public Read only

0
0
Text · 972 B · 94c193a Raw
34 lines · plain
1; RUN: llvm-dis < %s.bc| FileCheck %s2; RUN: verify-uselistorder < %s.bc3 4; vectorOperations.3.2.ll.bc was generated by passing this file to llvm-as-3.2.5; The test checks that LLVM does not misread vector operations of6; older bitcode files.7 8define void @extractelement(<2 x i8> %x1){9entry:10; CHECK: %res1 = extractelement <2 x i8> %x1, i32 011  %res1 = extractelement <2 x i8> %x1, i32 012 13  ret void14}15 16define void @insertelement(<2 x i8> %x1){17entry:18; CHECK: %res1 = insertelement <2 x i8> %x1, i8 0, i32 019  %res1 = insertelement <2 x i8> %x1, i8 0, i32 020 21  ret void22}23 24define void @shufflevector(<2 x i8> %x1){25entry:26; CHECK: %res1 = shufflevector <2 x i8> %x1, <2 x i8> %x1, <2 x i32> <i32 0, i32 1>27  %res1 = shufflevector <2 x i8> %x1, <2 x i8> %x1, <2 x i32> <i32 0, i32 1>28 29; CHECK-NEXT: %res2 = shufflevector <2 x i8> %x1, <2 x i8> undef, <2 x i32> <i32 0, i32 1>30  %res2 = shufflevector <2 x i8> %x1, <2 x i8> undef, <2 x i32> <i32 0, i32 1>31 32  ret void33}34