mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[Dominators] Workaround explicit instantiation bug.
Some platforms have problems with emmiting constructors when class templates get explicitly instantiated. This patch fixes the bug reported in D35315 by replacing `= default` with an empty constructor body. llvm-svn: 308140
This commit is contained in:
parent
5285a49ef8
commit
8500538bd3
@ -230,7 +230,7 @@ class DominatorTreeBase {
|
||||
using NodePtr = NodeT *;
|
||||
static constexpr bool IsPostDominator = IsPostDom;
|
||||
|
||||
DominatorTreeBase() = default;
|
||||
DominatorTreeBase() {}
|
||||
|
||||
DominatorTreeBase(DominatorTreeBase &&Arg)
|
||||
: Roots(std::move(Arg.Roots)),
|
||||
|
Loading…
Reference in New Issue
Block a user