1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Lefted out a fix in the previous check in.

llvm-svn: 24873
This commit is contained in:
Evan Cheng 2005-12-20 00:06:17 +00:00
parent d4562971b3
commit 63d897b0e2

View File

@ -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 {
// If this instruction is the root, and if there is only one use of it,
// use SelectNodeTo instead of getTargetNode to avoid an allocation.