blob: d5e7c29a0cdb2ff4b6725695ac9afe4a5a7647e1 [file] [log] [blame]
Dan Gohman0d4bbf22009-08-25 15:38:29 +00001; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse41 -o %t
Mon P Wangcf9ba822009-01-31 06:07:45 +00002; RUN: grep xorps %t | count 1
3
4; Test that when we don't -enable-unsafe-fp-math, we don't do the optimization
5; -0 - (A - B) to (B - A) because A==B, -0 != 0
6
7define float @negfp(float %a, float %b) {
8entry:
Dan Gohmana5b96452009-06-04 22:49:04 +00009 %sub = fsub float %a, %b ; <float> [#uses=1]
10 %neg = fsub float -0.000000e+00, %sub ; <float> [#uses=1]
Mon P Wangcf9ba822009-01-31 06:07:45 +000011 ret float %neg
Dan Gohman0d4bbf22009-08-25 15:38:29 +000012}