diff options
author | Hans Wennborg <hans@hanshq.net> | 2017-08-29 17:17:42 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2017-08-29 17:17:42 +0000 |
commit | 828b6813144ea5d1dbf13168d8f79faa838fb49a (patch) | |
tree | e2be536ce9eca88a9e95ffb0e0f31fe551f386f8 | |
parent | a18e824abb637b3a20502830cd8182550c699413 (diff) | |
download | llvm-828b6813144ea5d1dbf13168d8f79faa838fb49a.zip llvm-828b6813144ea5d1dbf13168d8f79faa838fb49a.tar.gz llvm-828b6813144ea5d1dbf13168d8f79faa838fb49a.tar.bz2 |
Merging r311835:
------------------------------------------------------------------------
r311835 | dhinton | 2017-08-26 14:08:51 -0700 (Sat, 26 Aug 2017) | 12 lines
[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: 312014
-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 811373a..1caf151 100644 --- a/llvm/lib/Analysis/PostDominators.cpp +++ b/llvm/lib/Analysis/PostDominators.cpp @@ -23,8 +23,6 @@ using namespace llvm; #define DEBUG_TYPE "postdomtree" -template class llvm::DominatorTreeBase<BasicBlock, true>; // PostDomTreeBase - //===----------------------------------------------------------------------===// // PostDominatorTree Implementation //===----------------------------------------------------------------------===// |