mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
9 lines
195 B
LLVM
9 lines
195 B
LLVM
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep sub
|
||
|
; PR2553
|
||
|
|
||
|
define double @test(double %X) nounwind {
|
||
|
; fsub of self can't be optimized away.
|
||
|
%Y = sub double %X, %X
|
||
|
ret double %Y
|
||
|
}
|