aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/CodeGenDAGPatterns.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2009-04-24 12:40:33 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2009-04-24 12:40:33 +0000
commit37f8e8ace433a675e90a9c45ded7827a4d06f21b (patch)
tree2d43d8f19d7fc59d2c61b282b789a704c96b16b0 /utils/TableGen/CodeGenDAGPatterns.h
parentd88f88410def31ddbee62f12d2763ea555367ae5 (diff)
downloadexternal_llvm-37f8e8ace433a675e90a9c45ded7827a4d06f21b.zip
external_llvm-37f8e8ace433a675e90a9c45ded7827a4d06f21b.tar.gz
external_llvm-37f8e8ace433a675e90a9c45ded7827a4d06f21b.tar.bz2
Revert 69952. Causes testsuite failures on linux x86-64.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69967 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenDAGPatterns.h')
-rw-r--r--utils/TableGen/CodeGenDAGPatterns.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenDAGPatterns.h b/utils/TableGen/CodeGenDAGPatterns.h
index 9ce14dc..f1b0d37 100644
--- a/utils/TableGen/CodeGenDAGPatterns.h
+++ b/utils/TableGen/CodeGenDAGPatterns.h
@@ -62,7 +62,8 @@ struct SDTypeConstraint {
unsigned OperandNo; // The operand # this constraint applies to.
enum {
SDTCisVT, SDTCisPtrTy, SDTCisInt, SDTCisFP, SDTCisSameAs,
- SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp, SDTCisEltOfVec
+ SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp, SDTCisIntVectorOfSameSize,
+ SDTCisEltOfVec
} ConstraintType;
union { // The discriminated union.
@@ -80,6 +81,9 @@ struct SDTypeConstraint {
} SDTCisOpSmallerThanOp_Info;
struct {
unsigned OtherOperandNum;
+ } SDTCisIntVectorOfSameSize_Info;
+ struct {
+ unsigned OtherOperandNum;
} SDTCisEltOfVec_Info;
} x;