[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / vec_gep_scalar_arg.ll
blobd042d3bbc127f6db28d1371d0cd96a412a9f7d04
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -instcombine -S < %s | FileCheck %s
4 define <4 x i16*> @PR41270([4 x i16]* %x) {
5 ; CHECK-LABEL: @PR41270(
6 ; CHECK-NEXT:    [[T3:%.*]] = getelementptr inbounds [4 x i16], [4 x i16]* [[X:%.*]], i64 0, i64 3
7 ; CHECK-NEXT:    [[INS2:%.*]] = insertelement <4 x i16*> undef, i16* [[T3]], i32 0
8 ; CHECK-NEXT:    ret <4 x i16*> [[INS2]]
10   %ins = insertelement <4 x [4 x i16]*> undef, [4 x i16]* %x, i32 0
11   %splat = shufflevector <4 x [4 x i16]*> %ins, <4 x [4 x i16]*> undef, <4 x i32> zeroinitializer
12   %t2 = getelementptr inbounds [4 x i16], <4 x [4 x i16]*> %splat, i32 0, i32 3
13   %t3 = extractelement <4 x i16*> %t2, i32 3
14   %ins2 = insertelement <4 x i16*> undef, i16* %t3, i32 0
15   ret <4 x i16*> %ins2