summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/vec_insertelt.ll
blob: 3b949209c4d7693b05a7d5b42f27617dbe9a148a (plain)
1
2
3
4
5
6
7
8
; RUN: opt < %s -instcombine -S | FileCheck %s
; CHECK: ret <4 x i32> %A

; PR1286
define <4 x i32> @test1(<4 x i32> %A) {
	%B = insertelement <4 x i32> %A, i32 undef, i32 1
	ret <4 x i32> %B
}