mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
ARM: MSVC does not support = default
Explicitly "implement" the destructor as MSVC does not support defaulted methods yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207350 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
103f947472
commit
f090afddb4
@ -23,7 +23,7 @@ public:
|
||||
: MCWinCOFFObjectTargetWriter(COFF::IMAGE_FILE_MACHINE_ARMNT) {
|
||||
assert(!Is64Bit && "AArch64 support not yet implemented");
|
||||
}
|
||||
virtual ~ARMWinCOFFObjectWriter() = default;
|
||||
virtual ~ARMWinCOFFObjectWriter() { }
|
||||
|
||||
unsigned getRelocType(const MCValue &Target, const MCFixup &Fixup,
|
||||
bool IsCrossSection) const override;
|
||||
|
Loading…
Reference in New Issue
Block a user