brintos

brintos / llvm-project-archived public Read only

0
0
Text · 430 B · 78dd36f Raw
23 lines · plain
1; RUN: llc -mcpu=cortex-a9 < %s | FileCheck %s2 3target triple = "armv7-apple-ios"4 5; CHECK-LABEL: test6define float @test(float %x, float %y) {7entry:8; CHECK: vmul.f329; CHECK-NEXT: vsub.f3210  %0 = fmul float %x, %y11  %1 = fsub float %0, %012  ret float %113}14 15; CHECK-LABEL: test_nnan16define float @test_nnan(float %x, float %y) {17entry:18; CHECK: mov r0, #019  %0 = fmul float %x, %y20  %1 = fsub nnan float %0, %021  ret float %122}23