[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / ARM / nnan-fsub.ll
blob01839083547be354f8eaf864a75fb832894346d3
1 ; RUN: llc -mcpu=cortex-a9 < %s | FileCheck -check-prefix=SAFE %s
2 ; RUN: llc -mcpu=cortex-a9 --enable-no-nans-fp-math < %s | FileCheck -check-prefix=FAST %s
4 target triple = "armv7-apple-ios"
6 ; SAFE: test
7 ; FAST: test
8 define float @test(float %x, float %y) {
9 entry:
10 ; SAFE: vmul.f32
11 ; SAFE: vsub.f32
12 ; FAST: mov r0, #0
13   %0 = fmul float %x, %y
14   %1 = fsub float %0, %0
15   ret float %1