mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-14 15:28:20 +00:00
Lefted out a fix in the previous check in.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24873 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2134,7 +2134,13 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
OS << " return Result.getValue(N.ResNo);\n";
|
// FIXME: this only works because (for now) an instruction can either
|
||||||
|
// produce a single result or a single flag.
|
||||||
|
if (II.hasCtrlDep && NumImpResults > 0)
|
||||||
|
OS << " return (N.ResNo) ? Chain : Result.getValue(1);"
|
||||||
|
<< " // Chain comes before flag.\n";
|
||||||
|
else
|
||||||
|
OS << " return Result.getValue(N.ResNo);\n";
|
||||||
} else {
|
} else {
|
||||||
// If this instruction is the root, and if there is only one use of it,
|
// If this instruction is the root, and if there is only one use of it,
|
||||||
// use SelectNodeTo instead of getTargetNode to avoid an allocation.
|
// use SelectNodeTo instead of getTargetNode to avoid an allocation.
|
||||||
|
Reference in New Issue
Block a user