You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
This commit is contained in:
parent
32d52ae4ca
commit
f32dbaf0b2
23
external/llvm/test/Transforms/InstCombine/fneg-ext.ll
vendored
Normal file
23
external/llvm/test/Transforms/InstCombine/fneg-ext.ll
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
; 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
|
||||
}
|
Reference in New Issue
Block a user