1; RUN: opt < %s -instcombine -S | grep sub
2; PR2553
3
4define 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}
9