Skip to content
  1. Jun 19, 2007
  2. Jun 18, 2007
  3. Jun 17, 2007
    • Bill Wendling's avatar
      Revert patch. It regresses: · 094a4e81
      Bill Wendling authored
      define double @test2(i64 %A) {
         %B = bitcast i64 %A to double
         ret double %B
      }
      
      $ llvm-as < t.ll | llc -march=x86-64
      
      before:
      
               .align  4
               .globl  _test2
      _test2:
               movd %rdi, %xmm0
               ret
      
      after:
      
      _test2:
               subq $8, %rsp
               movq %rdi, (%rsp)
               movsd (%rsp), %xmm0
               addq $8, %rsp
               ret
      
      llvm-svn: 37617
      094a4e81
  4. Jun 16, 2007
  5. Jun 15, 2007
Loading