mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-28 07:17:32 +00:00
Fix the ::: problem
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19754 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -204,7 +204,7 @@ void AsmWriterEmitter::run(std::ostream &O) {
|
|||||||
|
|
||||||
for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
|
for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
|
||||||
O << " case " << Namespace << "::"
|
O << " case " << Namespace << "::"
|
||||||
<< Instructions[i].CGI->Name << ": ";
|
<< Instructions[i].CGI->TheDef->getName() << ": ";
|
||||||
Instructions[i].EmitCode(O);
|
Instructions[i].EmitCode(O);
|
||||||
O << " break;\n";
|
O << " break;\n";
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user