mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
Flag -> Glue, the ongoing saga
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122513 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -732,12 +732,12 @@ SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
|
||||
Properties |= 1 << SDNPAssociative;
|
||||
} else if (PropList[i]->getName() == "SDNPHasChain") {
|
||||
Properties |= 1 << SDNPHasChain;
|
||||
} else if (PropList[i]->getName() == "SDNPOutFlag") {
|
||||
Properties |= 1 << SDNPOutFlag;
|
||||
} else if (PropList[i]->getName() == "SDNPInFlag") {
|
||||
Properties |= 1 << SDNPInFlag;
|
||||
} else if (PropList[i]->getName() == "SDNPOptInFlag") {
|
||||
Properties |= 1 << SDNPOptInFlag;
|
||||
} else if (PropList[i]->getName() == "SDNPOutGlue") {
|
||||
Properties |= 1 << SDNPOutGlue;
|
||||
} else if (PropList[i]->getName() == "SDNPInGlue") {
|
||||
Properties |= 1 << SDNPInGlue;
|
||||
} else if (PropList[i]->getName() == "SDNPOptInGlue") {
|
||||
Properties |= 1 << SDNPOptInGlue;
|
||||
} else if (PropList[i]->getName() == "SDNPMayStore") {
|
||||
Properties |= 1 << SDNPMayStore;
|
||||
} else if (PropList[i]->getName() == "SDNPMayLoad") {
|
||||
|
||||
Reference in New Issue
Block a user