Fix a bug where incorrect C++ was being emitted.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28615 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-06-01 04:21:20 +00:00
parent 72f42bbc9b
commit 659a243b93

View File

@ -1446,7 +1446,6 @@ void CppWriter::printContents(
) {
Out << "\nModule* " << fname << "(Module *mod) {\n";
Out << "\nmod->setModuleIdentifier(\"" << mName << "\");\n";
Out << "\");\n";
printModuleBody();
Out << "\nreturn mod;\n";
Out << "\n}\n";