repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git]
/
test
/
Transforms
/
InstCombine
/
fsub-fsub.ll
blob
94ebf090ff33b4923cb2098be006ec085c4946f5
1
; RUN: opt < %s -instcombine -S | grep fsub | count 2
2
; PR4374
3
4
define float @func(float %a, float %b) nounwind {
5
%tmp3 = fsub float %a, %b
6
%tmp4 = fsub float -0.000000e+00, %tmp3
7
ret float %tmp4
8
}