• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -march=x86-64 -mattr=-avx,-pad-short-functions | FileCheck %s
2
3; CHECK: test3
4; CHECK: movd
5; CHECK-NOT: movd
6; CHECK: {{movlhps.*%xmm0, %xmm0}}
7; CHECK-NEXT: ret
8
9define <2 x i64> @test3(i64 %A) nounwind {
10entry:
11	%B = insertelement <2 x i64> undef, i64 %A, i32 1
12	ret <2 x i64> %B
13}
14
15