1; RUN: llc < %s | FileCheck %s 2 3target datalayout = "E-p:64:64:64-i1:8:8-i8:8:16-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:16:16-f128:128:128" 4target triple = "s390x-ibm-linux-gnu" 5 6define double @foo(double %a, double %b) nounwind { 7entry: 8; CHECK: cpsdr %f0, %f2, %f0 9 %0 = tail call double @copysign(double %a, double %b) nounwind readnone 10 ret double %0 11} 12 13define float @bar(float %a, float %b) nounwind { 14entry: 15; CHECK: cpsdr %f0, %f2, %f0 16 %0 = tail call float @copysignf(float %a, float %b) nounwind readnone 17 ret float %0 18} 19 20 21declare double @copysign(double, double) nounwind readnone 22declare float @copysignf(float, float) nounwind readnone 23