summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/SystemZ/soft-float-03.ll
blob: a53bf357d60b73c5a9075219cfc65b194397eab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc -mtriple=s390x-linux-gnu -mcpu=z13 -mattr=soft-float -O3 < %s | FileCheck %s
;
; Check that soft-float implies "-vector".

define <2 x i64> @f0(<2 x i64> %dummy, <2 x i64> %val1, <2 x i64> %val2) {
; CHECK-LABEL: f0:
; CHECK-NOT: vag
; CHECK-NOT: %v
  %res = add <2 x i64> %val1, %val2
  ret <2 x i64> %res
}