repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git]
/
llvm
/
test
/
Transforms
/
InstCombine
/
2008-07-16-fsub.ll
blob
2ace78854162e76daaad2f80fab8258bd4aea956
1
; RUN: opt < %s -passes=instcombine -S | grep sub
2
; PR2553
3
4
define double @test(double %X) nounwind {
5
; fsub of self can't be optimized away.
6
%Y = fsub double %X, %X
7
ret double %Y
8
}