repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git]
/
test
/
Transforms
/
InstCombine
/
vec_insertelt.ll
blob
eedf882518bf35912e78f6a2c1c04697fbd7ec6a
1
; RUN: opt < %s -instcombine -S | grep {ret <4 x i32> %A}
2
3
; PR1286
4
define <4 x i32> @test1(<4 x i32> %A) {
5
%B = insertelement <4 x i32> %A, i32 undef, i32 1
6
ret <4 x i32> %B
7
}