diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-23 15:30:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-23 15:30:06 +0000 |
commit | f26a8ee58017b22c41483b45679385eb0d31f000 (patch) | |
tree | 74820d8b9ed2e434081403a2d3e79cc4c260eea0 /llvm/lib/VMCore/SymbolTable.cpp | |
parent | 6077c3195f74b27b75ed3e9df3af7a13798b437f (diff) | |
download | bcm5719-llvm-f26a8ee58017b22c41483b45679385eb0d31f000.tar.gz bcm5719-llvm-f26a8ee58017b22c41483b45679385eb0d31f000.zip |
Remove redundant const qualifiers from cast<> expressions
llvm-svn: 7253
Diffstat (limited to 'llvm/lib/VMCore/SymbolTable.cpp')
-rw-r--r-- | llvm/lib/VMCore/SymbolTable.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/VMCore/SymbolTable.cpp b/llvm/lib/VMCore/SymbolTable.cpp index 12c87981b8e..ddd769d075f 100644 --- a/llvm/lib/VMCore/SymbolTable.cpp +++ b/llvm/lib/VMCore/SymbolTable.cpp @@ -19,7 +19,7 @@ SymbolTable::~SymbolTable() { if (TyPlane != end()) { VarMap &TyP = TyPlane->second; for (VarMap::iterator I = TyP.begin(), E = TyP.end(); I != E; ++I) { - const Type *Ty = cast<const Type>(I->second); + const Type *Ty = cast<Type>(I->second); if (Ty->isAbstract()) // If abstract, drop the reference... cast<DerivedType>(Ty)->removeAbstractTypeUser(this); } @@ -122,7 +122,7 @@ Value *SymbolTable::removeEntry(iterator Plane, type_iterator Entry) { // If we are removing an abstract type, remove the symbol table from it's use // list... if (Ty == Type::TypeTy) { - const Type *T = cast<const Type>(Result); + const Type *T = cast<Type>(Result); if (T->isAbstract()) { #if DEBUG_ABSTYPE std::cerr << "Removing abs type from symtab" << T->getDescription()<<"\n"; @@ -179,7 +179,7 @@ void SymbolTable::insertEntry(const std::string &Name, const Type *VTy, // If we are adding an abstract type, add the symbol table to it's use list. if (VTy == Type::TypeTy) { - const Type *T = cast<const Type>(V); + const Type *T = cast<Type>(V); if (T->isAbstract()) { cast<DerivedType>(T)->addAbstractTypeUser(this); #if DEBUG_ABSTYPE @@ -311,7 +311,7 @@ void SymbolTable::refineAbstractType(const DerivedType *OldType, #if DEBUG_ABSTYPE std::cerr << "Added type " << NewType->getDescription() << "\n"; #endif - cast<const DerivedType>(NewType)->addAbstractTypeUser(this); + cast<DerivedType>(NewType)->addAbstractTypeUser(this); } } } |