Mercurial > hg > CbC > CbC_llvm
view test/Transforms/InstCombine/fneg-ext.ll @ 121:803732b1fca8
LLVM 5.0
author | kono |
---|---|
date | Fri, 27 Oct 2017 17:07:41 +0900 |
parents | 95c75e76d11b |
children |
line wrap: on
line source
; RUN: opt -instcombine -S < %s | FileCheck %s ; CHECK: test1 define double @test1(float %a, double %b) nounwind readnone ssp uwtable { ; CHECK-NOT: fsub ; CHECK: fpext ; CHECK: fadd %1 = fsub float -0.000000e+00, %a %2 = fpext float %1 to double %3 = fsub double %b, %2 ret double %3 } ; CHECK: test2 define double @test2(float %a, double %b) nounwind readnone ssp uwtable { ; CHECK-NOT: fsub ; CHECK: fpext ; CHECK: fadd fast %1 = fsub float -0.000000e+00, %a %2 = fpext float %1 to double %3 = fsub fast double %b, %2 ret double %3 }