vectorInstructions.3.2.ll 972 B

123456789101112131415161718192021222324252627282930313233
  1. ; RUN: llvm-dis < %s.bc| FileCheck %s
  2. ; RUN: verify-uselistorder < %s.bc
  3. ; vectorOperations.3.2.ll.bc was generated by passing this file to llvm-as-3.2.
  4. ; The test checks that LLVM does not misread vector operations of
  5. ; older bitcode files.
  6. define void @extractelement(<2 x i8> %x1){
  7. entry:
  8. ; CHECK: %res1 = extractelement <2 x i8> %x1, i32 0
  9. %res1 = extractelement <2 x i8> %x1, i32 0
  10. ret void
  11. }
  12. define void @insertelement(<2 x i8> %x1){
  13. entry:
  14. ; CHECK: %res1 = insertelement <2 x i8> %x1, i8 0, i32 0
  15. %res1 = insertelement <2 x i8> %x1, i8 0, i32 0
  16. ret void
  17. }
  18. define void @shufflevector(<2 x i8> %x1){
  19. entry:
  20. ; CHECK: %res1 = shufflevector <2 x i8> %x1, <2 x i8> %x1, <2 x i32> <i32 0, i32 1>
  21. %res1 = shufflevector <2 x i8> %x1, <2 x i8> %x1, <2 x i32> <i32 0, i32 1>
  22. ; CHECK-NEXT: %res2 = shufflevector <2 x i8> %x1, <2 x i8> undef, <2 x i32> <i32 0, i32 1>
  23. %res2 = shufflevector <2 x i8> %x1, <2 x i8> undef, <2 x i32> <i32 0, i32 1>
  24. ret void
  25. }