Call this method with the object we have

llvm-svn: 24279
This commit is contained in:
Chris Lattner 2005-11-10 18:53:25 +00:00
parent 4f827446da
commit 369b61f068
1 changed files with 2 additions and 2 deletions

View File

@ -999,7 +999,7 @@ void CWriter::printModuleTypes(const SymbolTable &ST) {
Out << "/* Structure forward decls */\n"; Out << "/* Structure forward decls */\n";
for (; I != End; ++I) for (; I != End; ++I)
if (const Type *STy = dyn_cast<StructType>(I->second)) { if (const Type *STy = dyn_cast<StructType>(I->second)) {
std::string Name = "struct l_" + Mangler::makeNameProper(I->first); std::string Name = "struct l_" + Mang->makeNameProper(I->first);
Out << Name << ";\n"; Out << Name << ";\n";
TypeNames.insert(std::make_pair(STy, Name)); TypeNames.insert(std::make_pair(STy, Name));
} }
@ -1010,7 +1010,7 @@ void CWriter::printModuleTypes(const SymbolTable &ST) {
Out << "/* Typedefs */\n"; Out << "/* Typedefs */\n";
for (I = ST.type_begin(); I != End; ++I) { for (I = ST.type_begin(); I != End; ++I) {
const Type *Ty = cast<Type>(I->second); const Type *Ty = cast<Type>(I->second);
std::string Name = "l_" + Mangler::makeNameProper(I->first); std::string Name = "l_" + Mang->makeNameProper(I->first);
Out << "typedef "; Out << "typedef ";
printType(Out, Ty, Name); printType(Out, Ty, Name);
Out << ";\n"; Out << ";\n";