Revert 72707 and 72709, for the moment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72712 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen
2009-06-02 03:12:52 +00:00
parent 5d16396a33
commit 874ae251c3
18 changed files with 124 additions and 433 deletions
+1 -13
View File
@@ -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";