repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[X86] combineTargetShuffle - commute VPERMV3 shuffles so any load is on the RHS
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
SystemZ
/
soft-float-03.ll
blob
a53bf357d60b73c5a9075219cfc65b194397eab0
1
; RUN: llc -mtriple=s390x-linux-gnu -mcpu=z13 -mattr=soft-float -O3 < %s | FileCheck %s
2
;
3
; Check that soft-float implies "-vector".
4
5
define <2 x i64> @f0(<2 x i64> %dummy, <2 x i64> %val1, <2 x i64> %val2) {
6
; CHECK-LABEL: f0:
7
; CHECK-NOT: vag
8
; CHECK-NOT: %v
9
%res = add <2 x i64> %val1, %val2
10
ret <2 x i64> %res
11
}