Bug fix: CodeGenMap[N] = ... -> CodeGenMap[N.getValue(0)] = ...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24680 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2005-12-12 23:45:21 +00:00
parent 481c8e0501
commit 0e65b27e28

View File

@ -2026,7 +2026,7 @@ public:
OS << ", InFlag";
OS << ");\n";
if (NumResults != 0) {
OS << " CodeGenMap[N] = Result;\n";
OS << " CodeGenMap[N.getValue(0)] = Result;\n";
}
OS << " Chain ";
if (NodeHasChain(LHS, ISE))