1 ; RUN: llc -verify-machineinstrs -ppc-asm-full-reg-names < %s -mattr=-vsx -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
3 define double @fabs(double %f) {
6 ; CHECK-NEXT: fabs f1, f1
9 %t = tail call double @fabs( double %f ) readnone
13 define float @bitcast_fabs(float %x) {
14 ; CHECK-LABEL: bitcast_fabs:
16 ; CHECK-NEXT: fabs f1, f1
19 %bc1 = bitcast float %x to i32
20 %and = and i32 %bc1, 2147483647
21 %bc2 = bitcast i32 %and to float