Fix the ::: problem

llvm-svn: 19754
This commit is contained in:
Chris Lattner 2005-01-22 18:18:59 +00:00
parent 3baf682110
commit b6f5d9a82a
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ void AsmWriterEmitter::run(std::ostream &O) {
for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
O << " case " << Namespace << "::"
<< Instructions[i].CGI->Name << ": ";
<< Instructions[i].CGI->TheDef->getName() << ": ";
Instructions[i].EmitCode(O);
O << " break;\n";
}