From 68e5ed8dbe724bd3380a044a522d4fd3effe2dd0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 29 Mar 2002 04:48:40 +0000 Subject: Add new addTypeName method to Module class git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2037 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Module.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'lib/VMCore/Module.cpp') diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp index c0767cd7d1..9d13169970 100644 --- a/lib/VMCore/Module.cpp +++ b/lib/VMCore/Module.cpp @@ -70,6 +70,21 @@ Function *Module::getFunction(const std::string &Name, const FunctionType *Ty) { return cast_or_null(SymTab->lookup(PointerType::get(Ty), Name)); } +// addTypeName - Insert an entry in the symbol table mapping Str to Type. If +// there is already an entry for this name, true is returned and the symbol +// table is not modified. +// +bool Module::addTypeName(const std::string &Name, const Type *Ty) { + SymbolTable *ST = getSymbolTableSure(); + + if (ST->lookup(Type::TypeTy, Name)) return true; // Already in symtab... + + // Not in symbol table? Set the name with the Symtab as an argument so the + // type knows what to update... + ((Value*)Ty)->setName(Name, ST); + + return false; +} // dropAllReferences() - This function causes all the subinstructions to "let -- cgit v1.2.3-18-g5258