Removed spurious EnablePPCRS check.
[oota-llvm.git] / lib / Target / X86 / README-X86-64.txt
index 59cecdf4f2cc1df8f42bc53f7b459726be46cfa3..359b83d01a6efd88b550e3f95864117b6c483690 100644 (file)
@@ -236,19 +236,3 @@ on the result of the movb).
 
 //===---------------------------------------------------------------------===//
 
-This function:
-double a(double b) {return (unsigned)b;} 
-compiles to this code:
-
-_a:
-       subq    $8, %rsp
-       cvttsd2siq      %xmm0, %rax
-       movl    $4294967295, %ecx
-       andq    %rcx, %rax
-       cvtsi2sdq       %rax, %xmm0
-       addq    $8, %rsp
-       ret
-
-note the dead rsp adjustments.
-
-//===---------------------------------------------------------------------===//