blob: 15d4772927d16412646d762799f7fdff48972042 [file] [log] [blame]
Bob Wilson9aadf0b2009-09-10 00:49:22 +00001; RUN: llc < %s -fast-isel -march=x86-64 | FileCheck %s
Dan Gohmanf154271b2009-09-03 22:53:57 +00002
3; CHECK: doo:
Bob Wilson9aadf0b2009-09-10 00:49:22 +00004; CHECK: xorpd
Dan Gohmanf154271b2009-09-03 22:53:57 +00005define double @doo(double %x) nounwind {
6 %y = fsub double -0.0, %x
7 ret double %y
8}
9
10; CHECK: foo:
Bob Wilson9aadf0b2009-09-10 00:49:22 +000011; CHECK: xorps
Dan Gohmanf154271b2009-09-03 22:53:57 +000012define float @foo(float %x) nounwind {
13 %y = fsub float -0.0, %x
14 ret float %y
15}