diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-24 00:41:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-24 00:41:19 +0000 |
commit | 6c2d178957bc01a2caa468c9b946379b85f14c8c (patch) | |
tree | 3df446e50a6e6f7b1667f366c2d0b8c7b8f9728c /llvm/utils/TableGen/CodeGenDAGPatterns.h | |
parent | bad991dbfd7d08fb8dad9e452ed416a02571d116 (diff) | |
download | llvm-6c2d178957bc01a2caa468c9b946379b85f14c8c.zip llvm-6c2d178957bc01a2caa468c9b946379b85f14c8c.tar.gz llvm-6c2d178957bc01a2caa468c9b946379b85f14c8c.tar.bz2 |
add plumbing for handling multiple result nodes
in some more places.
llvm-svn: 99366
Diffstat (limited to 'llvm/utils/TableGen/CodeGenDAGPatterns.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenDAGPatterns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.h b/llvm/utils/TableGen/CodeGenDAGPatterns.h index cf70daf..fc16663 100644 --- a/llvm/utils/TableGen/CodeGenDAGPatterns.h +++ b/llvm/utils/TableGen/CodeGenDAGPatterns.h @@ -211,7 +211,7 @@ public: /// getKnownType - If the type constraints on this node imply a fixed type /// (e.g. all stores return void, etc), then return it as an /// MVT::SimpleValueType. Otherwise, return MVT::Other. - MVT::SimpleValueType getKnownType() const; + MVT::SimpleValueType getKnownType(unsigned ResNo) const; /// hasProperty - Return true if this node has the specified property. /// |