diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2015-07-13 17:21:31 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2015-07-13 17:21:31 +0000 |
commit | a667d1adb7de2b6875a395416afa3d19e407583b (patch) | |
tree | bae506f18d8f805ea9a828d02d4100d4d78c7c3d /llvm/lib/CodeGen/MachineDominators.cpp | |
parent | e448b5be058ccc9574ee084345ec539053a54869 (diff) | |
download | bcm5719-llvm-a667d1adb7de2b6875a395416afa3d19e407583b.tar.gz bcm5719-llvm-a667d1adb7de2b6875a395416afa3d19e407583b.zip |
Remove macro guards for extern template instantiations.
This is a C++11 feature that both GCC and MSVC have supported as ane extension
long before C++11 was approved.
llvm-svn: 242042
Diffstat (limited to 'llvm/lib/CodeGen/MachineDominators.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineDominators.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineDominators.cpp b/llvm/lib/CodeGen/MachineDominators.cpp index 467a2e4eb42..3f04bb0b532 100644 --- a/llvm/lib/CodeGen/MachineDominators.cpp +++ b/llvm/lib/CodeGen/MachineDominators.cpp @@ -19,8 +19,8 @@ using namespace llvm; namespace llvm { -TEMPLATE_INSTANTIATION(class DomTreeNodeBase<MachineBasicBlock>); -TEMPLATE_INSTANTIATION(class DominatorTreeBase<MachineBasicBlock>); +template class DomTreeNodeBase<MachineBasicBlock>; +template class DominatorTreeBase<MachineBasicBlock>; } char MachineDominatorTree::ID = 0; |