1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py 2 ; RUN: llc < %s -mtriple=x86_64-unknown -mattr=+sse4.2 | FileCheck %s 3 4 define <2 x i64> @test(i64 %i) nounwind { 5 ; CHECK-LABEL: test: 6 ; CHECK: # BB#0: 7 ; CHECK-NEXT: movd %rdi, %xmm0 8 ; CHECK-NEXT: retq 9 %tmp10 = insertelement <2 x i64> undef, i64 %i, i32 0 10 %tmp11 = insertelement <2 x i64> %tmp10, i64 0, i32 1 11 ret <2 x i64> %tmp11 12 } 13