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:
0f4db7e
)
[AVX] Fix a typo in the extract subvector type constraints to specify
author
David Greene
<greened@obbligato.org>
Tue, 25 Jan 2011 22:05:41 +0000
(22:05 +0000)
committer
David Greene
<greened@obbligato.org>
Tue, 25 Jan 2011 22:05:41 +0000
(22:05 +0000)
the correct number of operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124234
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Target/TargetSelectionDAG.td
patch
|
blob
|
history
diff --git
a/include/llvm/Target/TargetSelectionDAG.td
b/include/llvm/Target/TargetSelectionDAG.td
index 7119e013a766c32d6e5f58dc578baa2ff36690ba..81ce7d97efc07e67668c12e0b9f953cc5aaee4b9 100644
(file)
--- a/
include/llvm/Target/TargetSelectionDAG.td
+++ b/
include/llvm/Target/TargetSelectionDAG.td
@@
-190,10
+190,10
@@
def SDTVecInsert : SDTypeProfile<1, 3, [ // vector insert
SDTCisEltOfVec<2, 1>, SDTCisSameAs<0, 1>, SDTCisPtrTy<3>
]>;
-def SDTSubVecExtract : SDTypeProfile<1,
1
, [// subvector extract
+def SDTSubVecExtract : SDTypeProfile<1,
2
, [// subvector extract
SDTCisSubVecOfVec<0,1>
]>;
-def SDTSubVecInsert : SDTypeProfile<1,
2
, [ // subvector insert
+def SDTSubVecInsert : SDTypeProfile<1,
3
, [ // subvector insert
SDTCisSubVecOfVec<2, 1>, SDTCisSameAs<0,1>
]>;