diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-08 21:51:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-08 21:51:46 +0000 |
commit | 6e44802ec03647549c19a7d0313fae009fac7a49 (patch) | |
tree | 112cfabe80ec8109759f2a507d90c37483d4a03a /lib/Bytecode/Reader/ReaderInternals.h | |
parent | 1f9bcd3988ae9db0e6e767b3c7ee5f4bad487262 (diff) |
Inline the postResolveValues method. It was poorly named anyway
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8976 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ReaderInternals.h')
-rw-r--r-- | lib/Bytecode/Reader/ReaderInternals.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h index c022519e58..8825df7fbe 100644 --- a/lib/Bytecode/Reader/ReaderInternals.h +++ b/lib/Bytecode/Reader/ReaderInternals.h @@ -77,11 +77,9 @@ public: std::cerr << "BytecodeParser instance!\n"; } -private: // All of this data is transient across calls to ParseBytecode +private: struct ValueList : public User { - ValueList() : User(Type::TypeTy, Value::TypeVal) { - } - ~ValueList() {} + ValueList() : User(Type::TypeTy, Value::TypeVal) {} // vector compatibility methods unsigned size() const { return getNumOperands(); } @@ -185,7 +183,6 @@ private: int insertValue(Value *V, ValueTable &Table); // -1 = Failure void setValueTo(ValueTable &D, unsigned Slot, Value *V); - void postResolveValues(ValueTable &ValTab); unsigned getTypeSlot(const Type *Ty); |