Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
      2 ; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s
      3 ; CHECK-NOT: xor
      4 ; CHECK: movd {{%rdi|%rcx}}, %xmm0
      5 ; CHECK-NOT: xor
      6 ; PR2108
      7 
      8 define <2 x i64> @doload64(i64 %x) nounwind  {
      9 entry:
     10 	%tmp717 = bitcast i64 %x to double		; <double> [#uses=1]
     11 	%tmp8 = insertelement <2 x double> undef, double %tmp717, i32 0		; <<2 x double>> [#uses=1]
     12 	%tmp9 = insertelement <2 x double> %tmp8, double 0.000000e+00, i32 1		; <<2 x double>> [#uses=1]
     13 	%tmp11 = bitcast <2 x double> %tmp9 to <2 x i64>		; <<2 x i64>> [#uses=1]
     14 	ret <2 x i64> %tmp11
     15 }
     16 
     17