diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-10-19 00:37:30 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-10-19 00:37:30 +0000 |
commit | a960cb71814683a4ce668be092074f7cd80c5011 (patch) | |
tree | ec7ddea4e51fd78cee173207227c8aaa8dfb27a7 /llvm/lib/MC/MCObjectFormat.cpp | |
parent | 04d2c5cb0e95081269eaa292b6ba2a5b50d68feb (diff) | |
download | bcm5719-llvm-a960cb71814683a4ce668be092074f7cd80c5011.tar.gz bcm5719-llvm-a960cb71814683a4ce668be092074f7cd80c5011.zip |
Move the definition of this to the source file to anchor the vtable.
llvm-svn: 116779
Diffstat (limited to 'llvm/lib/MC/MCObjectFormat.cpp')
-rw-r--r-- | llvm/lib/MC/MCObjectFormat.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCObjectFormat.cpp b/llvm/lib/MC/MCObjectFormat.cpp index 07d361c8a49..aeff3347187 100644 --- a/llvm/lib/MC/MCObjectFormat.cpp +++ b/llvm/lib/MC/MCObjectFormat.cpp @@ -12,6 +12,9 @@ using namespace llvm; +MCObjectFormat::~MCObjectFormat() { +} + bool MCELFObjectFormat::isAbsolute(bool IsSet, const MCSymbol &A, const MCSymbol &B) const { // On ELF A - B is absolute if A and B are in the same section. |