diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2009-04-24 12:40:33 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2009-04-24 12:40:33 +0000 |
| commit | b93db668b3f31451a6a4956b5a58decac308a48f (patch) | |
| tree | e5001a54441fd97f335833f81a34444e7901e259 /llvm/utils/TableGen/CodeGenDAGPatterns.h | |
| parent | 40493eb6ebc7fd1090a30f62c1eb04e33ebe1100 (diff) | |
| download | bcm5719-llvm-b93db668b3f31451a6a4956b5a58decac308a48f.tar.gz bcm5719-llvm-b93db668b3f31451a6a4956b5a58decac308a48f.zip | |
Revert 69952. Causes testsuite failures on linux x86-64.
llvm-svn: 69967
Diffstat (limited to 'llvm/utils/TableGen/CodeGenDAGPatterns.h')
| -rw-r--r-- | llvm/utils/TableGen/CodeGenDAGPatterns.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.h b/llvm/utils/TableGen/CodeGenDAGPatterns.h index 9ce14dcc7b3..f1b0d37605b 100644 --- a/llvm/utils/TableGen/CodeGenDAGPatterns.h +++ b/llvm/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; |

