ELF/AMDGPU: Remove another unused private member variable

llvm-svn: 246164
This commit is contained in:
Tom Stellard 2015-08-27 17:11:10 +00:00
parent 054026dba2
commit fbbbc01caa
1 changed files with 1 additions and 4 deletions

View File

@ -19,15 +19,12 @@ class AMDGPUTargetLayout;
class AMDGPUTargetRelocationHandler final : public TargetRelocationHandler {
public:
AMDGPUTargetRelocationHandler(AMDGPUTargetLayout &layout)
: _targetLayout(layout) {}
AMDGPUTargetRelocationHandler(AMDGPUTargetLayout &layout) { }
std::error_code applyRelocation(ELFWriter &, llvm::FileOutputBuffer &,
const AtomLayout &,
const Reference &) const override;
private:
AMDGPUTargetLayout &_targetLayout;
};
} // elf
} // lld