diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-03-19 04:54:36 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-03-19 04:54:36 +0000 |
| commit | be6b17f92798e953d36a88693076ae95e3a06a39 (patch) | |
| tree | 8235e8aebbb6056a21cf427ab0399e4d9789e385 /llvm/utils/TableGen/CodeGenDAGPatterns.h | |
| parent | e5ac9382ced6517bcdd1024731689fa5214cc46d (diff) | |
| download | bcm5719-llvm-be6b17f92798e953d36a88693076ae95e3a06a39.tar.gz bcm5719-llvm-be6b17f92798e953d36a88693076ae95e3a06a39.zip | |
rewrite EnforceSmallerThan to be less bone headed.
llvm-svn: 98933
Diffstat (limited to 'llvm/utils/TableGen/CodeGenDAGPatterns.h')
| -rw-r--r-- | llvm/utils/TableGen/CodeGenDAGPatterns.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.h b/llvm/utils/TableGen/CodeGenDAGPatterns.h index 404cb35770b..caf053285d9 100644 --- a/llvm/utils/TableGen/CodeGenDAGPatterns.h +++ b/llvm/utils/TableGen/CodeGenDAGPatterns.h @@ -133,6 +133,11 @@ namespace EEVT { bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; } bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; } + + private: + /// FillWithPossibleTypes - Set to all legal types and return true, only + /// valid on completely unknown type sets + bool FillWithPossibleTypes(TreePattern &TP); }; } |

