summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-04-17 21:20:55 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-04-17 21:20:55 +0000
commit43239078adac6f32315cadbef9709f2f0f499707 (patch)
tree8e372e3353d99990d11e1cf6ec79b3ea0f7c1865 /lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
parentdf39be6cb4eb44011db3d3e86f8fe463f81ce127 (diff)
downloadllvm-43239078adac6f32315cadbef9709f2f0f499707.tar.gz
llvm-43239078adac6f32315cadbef9709f2f0f499707.tar.bz2
llvm-43239078adac6f32315cadbef9709f2f0f499707.tar.xz
Two small cleanups for ELF's templates.
* We only ever specialize these templates with an instantiation of ELFType, so we don't need a template template. * Replace LLVM_ELF_COMMA with just passing the individual parameters to the macro. This requires a second macro for when we only have ELFT, but that is still a small win. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp')
-rw-r--r--lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
index 0b23b2bdb4..7e9407217b 100644
--- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
+++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
@@ -41,7 +41,7 @@ error_code check(error_code Err) {
template<class ELFT>
class DyldELFObject
: public ELFObjectFile<ELFT> {
- LLVM_ELF_IMPORT_TYPES(ELFT)
+ LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
typedef Elf_Shdr_Impl<ELFT> Elf_Shdr;
typedef Elf_Sym_Impl<ELFT> Elf_Sym;