mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Fix another bug legalizing calls!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19350 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f44fd88e9c
commit
fad71ebe1e
@ -291,7 +291,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
|
||||
case ISD::CALL:
|
||||
Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
|
||||
Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the callee.
|
||||
if (Tmp2 != Node->getOperand(0) || Tmp2 != Node->getOperand(1)) {
|
||||
if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1)) {
|
||||
std::vector<MVT::ValueType> RetTyVTs;
|
||||
RetTyVTs.reserve(Node->getNumValues());
|
||||
for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
|
||||
|
Loading…
x
Reference in New Issue
Block a user