15 lines · plain
1; RUN: llc < %s -mtriple=armv5e-none-linux-gnueabi -mattr=+vfp2 | FileCheck %s -check-prefix=CHECK-VABS2; RUN: llc < %s -mtriple=armv7-none-linux-gnueabi -mattr=+vfp3 | FileCheck %s -check-prefix=CHECK-BFC3 4 5define double @test(double %tx) {6;CHECK-LABEL: test:7 %call = tail call double @fabs(double %tx)8 ret double %call9;CHECK-VABS: vabs.f6410;CHECK-BFC: bfc11}12 13declare double @fabs(double) readnone14 15