projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c152f9c
)
Test case for the insertelement operation.
author
Robert Bocchino
<bocchino@illinois.edu>
Tue, 17 Jan 2006 20:07:30 +0000
(20:07 +0000)
committer
Robert Bocchino
<bocchino@illinois.edu>
Tue, 17 Jan 2006 20:07:30 +0000
(20:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25409
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/Feature/instructions.ll
patch
|
blob
|
history
diff --git
a/test/Feature/instructions.ll
b/test/Feature/instructions.ll
index 2edb1faba75507f44abf9c908afecc179d156704..a65adead691feee30229402f44927f165d862806 100644
(file)
--- a/
test/Feature/instructions.ll
+++ b/
test/Feature/instructions.ll
@@
-3,6
+3,11
@@
; RUN: diff %t1.ll %t2.ll
uint %test_extractelement(<4 x uint> %V) {
- %R = extractelement <4 x uint> %V, uint 1
- ret uint %R
+ %R = extractelement <4 x uint> %V, uint 1
+ ret uint %R
+}
+
+<4 x uint> %test_insertelement(<4 x uint> %V) {
+ %R = insertelement <4 x uint> %V, uint 0, uint 0
+ ret <4 x uint> %R
}