rename getOrCreateSlot -> CreateSlotIfNeeded. Noone cares about the retval

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34125 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2007-02-10 04:54:01 +00:00
parent 17d60ce795
commit 94bec4fbf8
2 changed files with 14 additions and 23 deletions

View File

@@ -104,11 +104,7 @@ public:
string_iterator string_end() const { return ConstantStrings.end(); }
private:
// getOrCreateSlot - Values can be crammed into here at will... if
// they haven't been inserted already, they get inserted, otherwise
// they are ignored.
//
int getOrCreateSlot(const Value *V);
void CreateSlotIfNeeded(const Value *V);
unsigned getOrCreateTypeSlot(const Type *T);
// doInsertValue - Small helper function to be called only be insertVal.