Remove VISIBILITY_HIDDEN from this file.
[llvm/avr.git] / test / CodeGen / SystemZ / 2009-08-22-FCopySign.ll
blobcaa8065517d0690ca22701720d92ad6af134a9b6
1 ; RUN: llvm-as < %s | llc | FileCheck %s
3 target 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"
4 target triple = "s390x-ibm-linux-gnu"
6 define double @foo(double %a, double %b) nounwind {
7 entry:
8 ; CHECK: cpsdr %f0, %f2, %f0
9   %0 = tail call double @copysign(double %a, double %b) nounwind readnone
10   ret double %0
13 define float @bar(float %a, float %b) nounwind {
14 entry:
15 ; CHECK: cpsdr %f0, %f2, %f0
16   %0 = tail call float @copysignf(float %a, float %b) nounwind readnone
17   ret float %0
21 declare double @copysign(double, double) nounwind readnone
22 declare float @copysignf(float, float) nounwind readnone