Actually add instructions to the list of defined values so it gets

recognized as such!  This prevents the CppWriter from treating every
operand as a forward reference and making a mess of the output.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28800 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-06-15 16:09:59 +00:00
parent 35f8c208a9
commit 68464b74b8

View File

@ -1193,6 +1193,7 @@ CppWriter::printInstruction(const Instruction *I, const std::string& bbname) {
break;
}
}
DefinedValues.insert(I);
Out << "\n";
delete [] opNames;
}