Index: tests_lit/llvm2ice_tests/vector-arith.ll |
diff --git a/tests_lit/llvm2ice_tests/vector-arith.ll b/tests_lit/llvm2ice_tests/vector-arith.ll |
index d300317cae34eaad29214cb783e0d6d97aceb687..88639d469f2052ebdbff3ee8d17dcf6e06f0bf5f 100644 |
--- a/tests_lit/llvm2ice_tests/vector-arith.ll |
+++ b/tests_lit/llvm2ice_tests/vector-arith.ll |
@@ -2,10 +2,18 @@ |
; RUN: %llvm2ice -O2 --verbose none %s | FileCheck %s |
; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck %s |
+; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ |
+; RUN: | FileCheck %s --check-prefix=SSE41 |
+; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ |
+; RUN: | FileCheck %s --check-prefix=SSE41 |
; RUN: %llvm2ice -O2 --verbose none %s \ |
; RUN: | llvm-mc -arch=x86 -x86-asm-syntax=intel -filetype=obj |
; RUN: %llvm2ice -Om1 --verbose none %s \ |
; RUN: | llvm-mc -arch=x86 -x86-asm-syntax=intel -filetype=obj |
+; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ |
+; RUN: | llvm-mc -arch=x86 -x86-asm-syntax=intel -filetype=obj |
+; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ |
+; RUN: | llvm-mc -arch=x86 -x86-asm-syntax=intel -filetype=obj |
; 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 \ |
@@ -306,6 +314,9 @@ entry: |
; CHECK-LABEL: test_mul_v4i32: |
; CHECK: pmuludq |
; CHECK: pmuludq |
+; |
+; SSE41-LABEL: test_mul_v4i32: |
+; SSE41: pmulld |
} |
define <4 x i32> @test_shl_v4i32(<4 x i32> %arg0, <4 x i32> %arg1) { |
Jim Stichnoth
2014/07/29 23:01:17
Probably want to add "SSE41-LABEL: test_shl_v4i32"
wala
2014/07/30 00:11:24
Done.
|