mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
new testcase, vector operations should be CSE'd
llvm-svn: 27690
This commit is contained in:
parent
5eb63e14c3
commit
dbe00bf8d7
26
test/Regression/Transforms/GCSE/vectorops.ll
Normal file
26
test/Regression/Transforms/GCSE/vectorops.ll
Normal file
@ -0,0 +1,26 @@
|
||||
; RUN: llvm-as < %s | opt -gcse -instcombine -disable-output &&
|
||||
; RUN: llvm-as < %s | opt -gcse -instcombine | llvm-dis | not grep sub
|
||||
|
||||
uint %test_extractelement(<4 x uint> %V) {
|
||||
%R = extractelement <4 x uint> %V, uint 1
|
||||
%R2 = extractelement <4 x uint> %V, uint 1
|
||||
%V = sub uint %R, %R2
|
||||
ret uint %V
|
||||
}
|
||||
|
||||
<4 x uint> %test_insertelement(<4 x uint> %V) {
|
||||
%R = insertelement <4 x uint> %V, uint 0, uint 0
|
||||
%R2 = insertelement <4 x uint> %V, uint 0, uint 0
|
||||
%x = sub <4 x uint> %R, %R2
|
||||
ret <4 x uint> %x
|
||||
}
|
||||
|
||||
<4 x uint> %test_shufflevector(<4 x uint> %V) {
|
||||
%R = shufflevector <4 x uint> %V, <4 x uint> %V,
|
||||
<4 x uint> < uint 1, uint undef, uint 7, uint 2>
|
||||
%R2 = shufflevector <4 x uint> %V, <4 x uint> %V,
|
||||
<4 x uint> < uint 1, uint undef, uint 7, uint 2>
|
||||
%x = sub <4 x uint> %R, %R2
|
||||
ret <4 x uint> %x
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user