[RDF] Replace {} with explicit constructor, since not all compilers like it

llvm-svn: 296666
This commit is contained in:
Krzysztof Parzyszek 2017-03-01 19:59:28 +00:00
parent 283a60875e
commit 8144f37dd8
1 changed files with 1 additions and 1 deletions

View File

@ -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);