diff options
author | Don Hinton <hintonda@gmail.com> | 2017-08-26 21:08:51 +0000 |
---|---|---|
committer | Don Hinton <hintonda@gmail.com> | 2017-08-26 21:08:51 +0000 |
commit | a67e13129ddd05c6f8c06960dd134a7931d57002 (patch) | |
tree | 9b1aa4ab480f6873fd0026a1e6bce9c0c9b6cc57 | |
parent | c2f41b9f0b3e5982f0b0ee41589db79486d190be (diff) | |
download | bcm5719-llvm-a67e13129ddd05c6f8c06960dd134a7931d57002.tar.gz bcm5719-llvm-a67e13129ddd05c6f8c06960dd134a7931d57002.zip |
[Dominators] Remove redundant explicit template instantiation.
Summary:
Remove redundant explicit template instantiation.
This was reported by Andrew Kelley building release_50 with gcc7.2.0 on MacOS: duplicate symbol llvm::DominatorTreeBase.
Reviewers: kuhar, andrewrk, davide, hans
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D37185
llvm-svn: 311835
-rw-r--r-- | llvm/lib/Analysis/PostDominators.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/PostDominators.cpp b/llvm/lib/Analysis/PostDominators.cpp index fc34e6388a5..2282401085d 100644 --- a/llvm/lib/Analysis/PostDominators.cpp +++ b/llvm/lib/Analysis/PostDominators.cpp @@ -21,8 +21,6 @@ using namespace llvm; #define DEBUG_TYPE "postdomtree" -template class llvm::DominatorTreeBase<BasicBlock, true>; // PostDomTreeBase - //===----------------------------------------------------------------------===// // PostDominatorTree Implementation //===----------------------------------------------------------------------===// |