| Index: tests_lit/llvm2ice_tests/vector-select.ll
|
| diff --git a/tests_lit/llvm2ice_tests/vector-select.ll b/tests_lit/llvm2ice_tests/vector-select.ll
|
| index da7270b2869cdf517e0431dfccc95b41c37eddc7..3fb4940c334867c1fb827c7dabcef635fcbaeb25 100644
|
| --- a/tests_lit/llvm2ice_tests/vector-select.ll
|
| +++ b/tests_lit/llvm2ice_tests/vector-select.ll
|
| @@ -1,23 +1,21 @@
|
| ; This file tests support for the select instruction with vector valued inputs.
|
|
|
| -; RUN: %llvm2ice -O2 --verbose none %s \
|
| +; RUN: %p2i -i %s --args -O2 --verbose none \
|
| ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \
|
| ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
|
| -; RUN: %llvm2ice -Om1 --verbose none %s \
|
| +; RUN: %p2i -i %s --args -Om1 --verbose none \
|
| ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \
|
| ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
|
| -; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \
|
| +; RUN: %p2i -i %s --args -O2 -mattr=sse4.1 --verbose none \
|
| ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \
|
| ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - \
|
| ; RUN: | FileCheck --check-prefix=SSE41 %s
|
| -; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \
|
| +; RUN: %p2i -i %s --args -Om1 -mattr=sse4.1 --verbose none \
|
| ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \
|
| ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - \
|
| ; RUN: | FileCheck --check-prefix=SSE41 %s
|
| -; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s
|
| -; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s
|
| -; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \
|
| -; RUN: | FileCheck --check-prefix=DUMP %s
|
| +; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s
|
| +; RUN: %p2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s
|
|
|
| define <16 x i8> @test_select_v16i8(<16 x i1> %cond, <16 x i8> %arg1, <16 x i8> %arg2) {
|
| entry:
|
|
|