19 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 52; RUN: llc < %s -mcpu=corei7 | FileCheck %s3 4target triple = "x86_64-unknown-linux-gnu"5 6define void @ltstore(ptr %pA, ptr %pB) {7; CHECK-LABEL: ltstore:8; CHECK: # %bb.0: # %entry9; CHECK-NEXT: movq (%rdi), %rax10; CHECK-NEXT: movq %rax, (%rsi)11; CHECK-NEXT: retq12entry:13 %in = load <4 x i32>, ptr %pA14 %j = shufflevector <4 x i32> %in, <4 x i32> undef, <2 x i32> <i32 0, i32 1>15 store <2 x i32> %j, ptr %pB16 ret void17}18 19