If store's chain operand is load, then use load's chain operand instead. If
it isn't (likely a TokenFactor), then do not allow the folding.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25708
91177308-0d34-0410-b5e6-
96231b3b80d8
<< ".getValue(" << CInfo.getNumResults() << "))) goto P"
<< PatternNo << "Fail; // Already selected for a chain use?\n";
}
- if (NodeHasChain && !FoundChain) {
- OS << " SDOperand Chain = " << RootName << ".getOperand(0);\n";
- FoundChain = true;
+ if (NodeHasChain) {
+ if (!FoundChain) {
+ OS << " SDOperand Chain = " << RootName << ".getOperand(0);\n";
+ FoundChain = true;
+ } else {
+ OS << " if (Chain.Val == " << RootName << ".Val)\n";
+ OS << " Chain = " << RootName << ".getOperand(0);\n";
+ OS << " else\n";
+ OS << " goto P" << PatternNo << "Fail;\n";
+ }
}
}