diff options
author | Dale Johannesen <dalej@apple.com> | 2009-06-02 03:12:52 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2009-06-02 03:12:52 +0000 |
commit | 5234d3795f3ebacb5800b761ae4c9b6788f49c15 (patch) | |
tree | e57afc8e91f7a05979094d6eae91d5687a6969c7 /llvm/utils/TableGen/CodeGenDAGPatterns.cpp | |
parent | 2d725b19da4a3225d2b01e9cf6e9ddc9641cee5a (diff) | |
download | bcm5719-llvm-5234d3795f3ebacb5800b761ae4c9b6788f49c15.tar.gz bcm5719-llvm-5234d3795f3ebacb5800b761ae4c9b6788f49c15.zip |
Revert 72707 and 72709, for the moment.
llvm-svn: 72712
Diffstat (limited to 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenDAGPatterns.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp index a03224cdd5a..db76dabb537 100644 --- a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp +++ b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp @@ -399,13 +399,9 @@ SDNodeInfo::SDNodeInfo(Record *R) : Def(R) { } else if (PropList[i]->getName() == "SDNPHasChain") { Properties |= 1 << SDNPHasChain; } else if (PropList[i]->getName() == "SDNPOutFlag") { - Properties |= 1 << SDNPOutFlag; - assert(!(Properties & (1<<SDNPOutI1)) && - "Can't handle OutFlag and OutI1"); + Properties |= 1 << SDNPOutFlag; } else if (PropList[i]->getName() == "SDNPInFlag") { Properties |= 1 << SDNPInFlag; - assert(!(Properties & (1<<SDNPInI1)) && - "Can't handle InFlag and InI1"); } else if (PropList[i]->getName() == "SDNPOptInFlag") { Properties |= 1 << SDNPOptInFlag; } else if (PropList[i]->getName() == "SDNPMayStore") { @@ -416,14 +412,6 @@ SDNodeInfo::SDNodeInfo(Record *R) : Def(R) { Properties |= 1 << SDNPSideEffect; } else if (PropList[i]->getName() == "SDNPMemOperand") { Properties |= 1 << SDNPMemOperand; - } else if (PropList[i]->getName() == "SDNPInI1") { - Properties |= 1 << SDNPInI1; - assert(!(Properties & (1<<SDNPInFlag)) && - "Can't handle InFlag and InI1"); - } else if (PropList[i]->getName() == "SDNPOutI1") { - Properties |= 1 << SDNPOutI1; - assert(!(Properties & (1<<SDNPOutFlag)) && - "Can't handle OutFlag and OutI1"); } else { cerr << "Unknown SD Node property '" << PropList[i]->getName() << "' on node '" << R->getName() << "'!\n"; |