mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 00:24:26 +00:00
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
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user