mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 19:25:00 +00:00
Remove the unused TheTarget member.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120168 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -29,10 +29,7 @@ class TargetAsmBackend {
|
||||
TargetAsmBackend(const TargetAsmBackend &); // DO NOT IMPLEMENT
|
||||
void operator=(const TargetAsmBackend &); // DO NOT IMPLEMENT
|
||||
protected: // Can only create subclasses.
|
||||
TargetAsmBackend(const Target &);
|
||||
|
||||
/// TheTarget - The Target that this machine was created for.
|
||||
const Target &TheTarget;
|
||||
TargetAsmBackend();
|
||||
|
||||
unsigned HasReliableSymbolDifference : 1;
|
||||
unsigned HasScatteredSymbols : 1;
|
||||
@@ -40,8 +37,6 @@ protected: // Can only create subclasses.
|
||||
public:
|
||||
virtual ~TargetAsmBackend();
|
||||
|
||||
const Target &getTarget() const { return TheTarget; }
|
||||
|
||||
virtual const MCObjectFormat &getObjectFormat() const = 0;
|
||||
|
||||
/// createObjectWriter - Create a new MCObjectWriter instance for use by the
|
||||
|
Reference in New Issue
Block a user