brintos

brintos / llvm-project-archived public Read only

0
0
Text · 338 B · b11ee87 Raw
11 lines · plain
1; RUN: not llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 -mattr=soft-float -O3 2>&1 | FileCheck %s2;3; Verify that inline asms cannot use fp/vector registers with soft-float.4 5define <2 x i64> @f1() {6  %ret = call <2 x i64> asm "", "={v0}" ()7  ret <2 x i64> %ret8}9 10; CHECK: error: couldn't allocate output register for constraint '{v0}'11