You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
326 B
11 lines
326 B
; RUN: not llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 -mattr=soft-float -O3 2>&1 | FileCheck %s
|
|
;
|
|
; Verify that inline asms cannot use fp/vector registers with soft-float.
|
|
|
|
define float @f1() {
|
|
%ret = call float asm "", "={f0}" ()
|
|
ret float %ret
|
|
}
|
|
|
|
; CHECK: error: couldn't allocate output register for constraint '{f0}'
|