forked from OSchip/llvm-project
[x86] Add two more triples to stabilize the precise assembly syntax
across platforms. llvm-svn: 218973
This commit is contained in:
parent
b193d96bce
commit
ea026fbb7b
|
@ -2,6 +2,8 @@
|
||||||
; RUN: llc -march=x86-64 -mcpu=core2 < %s | FileCheck %s --check-prefix=SSE
|
; RUN: llc -march=x86-64 -mcpu=core2 < %s | FileCheck %s --check-prefix=SSE
|
||||||
; RUN: llc -march=x86-64 -mcpu=core-avx2 < %s | FileCheck %s --check-prefix=AVX
|
; RUN: llc -march=x86-64 -mcpu=core-avx2 < %s | FileCheck %s --check-prefix=AVX
|
||||||
|
|
||||||
|
target triple = "x86_64-unknown-unknown"
|
||||||
|
|
||||||
define <4 x i32> @test1(<4 x i32> %a) {
|
define <4 x i32> @test1(<4 x i32> %a) {
|
||||||
; SSE41-LABEL: test1:
|
; SSE41-LABEL: test1:
|
||||||
; SSE41: # BB#0:
|
; SSE41: # BB#0:
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
; RUN: llc < %s -march=x86 -mattr=+sse4.2 | FileCheck %s
|
; RUN: llc < %s -march=x86 -mattr=+sse4.2 | FileCheck %s
|
||||||
|
|
||||||
|
target triple = "x86_64-unknown-unknown"
|
||||||
|
|
||||||
; widening shuffle v3float and then a add
|
; widening shuffle v3float and then a add
|
||||||
define void @shuf(<3 x float>* %dst.addr, <3 x float> %src1,<3 x float> %src2) nounwind {
|
define void @shuf(<3 x float>* %dst.addr, <3 x float> %src1,<3 x float> %src2) nounwind {
|
||||||
; CHECK-LABEL: shuf:
|
; CHECK-LABEL: shuf:
|
||||||
|
|
Loading…
Reference in New Issue