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-02.ll
blob
3f1b61a99b2fa2f4351728e35c6b263457104eda
1
; RUN: llc < %s -mtriple=s390x-linux-gnu -mattr=soft-float | FileCheck %s
2
;
3
; Check that FP registers are not saved in a vararg function if soft-float is
4
; used.
5
6
define void @fun0(...) {
7
; CHECK-LABEL: fun0
8
; CHECK-NOT: std %f0
9
; CHECK-NOT: std %f2
10
; CHECK-NOT: std %f4
11
; CHECK-NOT: std %f6
12
ret void
13
}
14
15