forked from OSchip/llvm-project
[RDF] Replace {} with explicit constructor, since not all compilers like it
llvm-svn: 296666
This commit is contained in:
parent
283a60875e
commit
8144f37dd8
|
@ -262,7 +262,7 @@ std::pair<NodeSet,bool>
|
|||
Liveness::getAllReachingDefsRecImpl(RegisterRef RefRR, NodeAddr<RefNode*> RefA,
|
||||
NodeSet &Visited, const NodeSet &Defs, unsigned Nest, unsigned MaxNest) {
|
||||
if (Nest > MaxNest)
|
||||
return { {}, false };
|
||||
return { NodeSet(), false };
|
||||
// Collect all defined registers. Do not consider phis to be defining
|
||||
// anything, only collect "real" definitions.
|
||||
RegisterAggr DefRRs(PRI);
|
||||
|
|
Loading…
Reference in New Issue