diff options
author | Sam McCall <sam.mccall@gmail.com> | 2018-03-12 14:40:48 +0000 |
---|---|---|
committer | Sam McCall <sam.mccall@gmail.com> | 2018-03-12 14:40:48 +0000 |
commit | bbfe43418587d18db6942663ffb34ebc3c7de0c6 (patch) | |
tree | e380c3941ff872e21076e9f39f1aeec81554b87f /llvm/lib | |
parent | 0984cfa9ab41e4c7663f094d15454774d61e4ea5 (diff) | |
download | bcm5719-llvm-bbfe43418587d18db6942663ffb34ebc3c7de0c6.tar.gz bcm5719-llvm-bbfe43418587d18db6942663ffb34ebc3c7de0c6.zip |
[Hexagon] fix 'must explicitly initialize the const member' error which clang 3.8 emits
llvm-svn: 327273
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Hexagon/RDFLiveness.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Hexagon/RDFLiveness.h b/llvm/lib/Target/Hexagon/RDFLiveness.h index 8cfb6a1e955..eaeb4ea115b 100644 --- a/llvm/lib/Target/Hexagon/RDFLiveness.h +++ b/llvm/lib/Target/Hexagon/RDFLiveness.h @@ -53,8 +53,8 @@ namespace rdf { using RefMap = std::map<RegisterId, NodeRefSet>; Liveness(MachineRegisterInfo &mri, const DataFlowGraph &g) - : DFG(g), TRI(g.getTRI()), PRI(g.getPRI()), MDT(g.getDT()), - MDF(g.getDF()), LiveMap(g.getPRI()), NoRegs(g.getPRI()) {} + : DFG(g), TRI(g.getTRI()), PRI(g.getPRI()), MDT(g.getDT()), + MDF(g.getDF()), LiveMap(g.getPRI()), Empty(), NoRegs(g.getPRI()) {} NodeList getAllReachingDefs(RegisterRef RefRR, NodeAddr<RefNode*> RefA, bool TopShadows, bool FullChain, const RegisterAggr &DefRRs); |