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
fix an embarassing typo that resulted in llvm-gcc bootstrap miscompare
[llvm/avr.git]
/
test
/
CodeGen
/
ARM
/
2009-08-31-TwoRegShuffle.ll
blob
e1e60e6317a6900d148d0ddfcdb6848a2c04ffa5
1
; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s
2
; pr4843
3
define <4 x i16> @v2regbug(<4 x i16>* %B) nounwind {
4
;CHECK: v2regbug:
5
;CHECK: vzip.16
6
%tmp1 = load <4 x i16>* %B
7
%tmp2 = shufflevector <4 x i16> %tmp1, <4 x i16> undef, <4 x i32><i32 0, i32 0, i32 1, i32 1>
8
ret <4 x i16> %tmp2
9
}