mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Removed no longer used member variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8677 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3229991165
commit
96f7877d19
@ -44,11 +44,10 @@ struct LazyFunctionInfo {
|
||||
};
|
||||
|
||||
class BytecodeParser : public AbstractTypeUser, public AbstractModuleProvider {
|
||||
unsigned char *Buffer;
|
||||
BytecodeParser(const BytecodeParser &); // DO NOT IMPLEMENT
|
||||
void operator=(const BytecodeParser &); // DO NOT IMPLEMENT
|
||||
public:
|
||||
BytecodeParser() : Buffer(0) {
|
||||
BytecodeParser() {
|
||||
// Define this in case we don't see a ModuleGlobalInfo block.
|
||||
FirstDerivedTyID = Type::FirstDerivedTyID;
|
||||
}
|
||||
@ -60,8 +59,6 @@ public:
|
||||
freeTable(Values);
|
||||
freeTable(LateResolveValues);
|
||||
freeTable(ModuleValues);
|
||||
delete [] Buffer;
|
||||
Buffer = 0;
|
||||
}
|
||||
|
||||
Module* releaseModule() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user