[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / InstCombine / tan-nofastmath.ll
blob0fe7b2c1d52294450637d707b3759f0955a21c04
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
3 define float @mytan(float %x) {
4 entry:
5   %call = call float @atanf(float %x)
6   %call1 = call float @tanf(float %call) 
7   ret float %call1
10 ; CHECK-LABEL: define float @mytan(
11 ; CHECK:   %call = call float @atanf(float %x)
12 ; CHECK-NEXT:   %call1 = call float @tanf(float %call)
13 ; CHECK-NEXT:   ret float %call1
14 ; CHECK-NEXT: }
16 declare float @tanf(float)
17 declare float @atanf(float)