Replace inherited constructor with an explicit one

Some bots failed when the inherited constructor was used.

llvm-svn: 257508
This commit is contained in:
Krzysztof Parzyszek 2016-01-12 19:27:59 +00:00
parent 09eb0b3b3f
commit f62d44be28
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,8 @@ INITIALIZE_PASS_END(HexagonRDFOpt, "rdfopt", "Hexagon RDF opt", false, false)
struct HexagonDCE : public DeadCodeElimination {
using DeadCodeElimination::DeadCodeElimination;
HexagonDCE(DataFlowGraph &G, MachineRegisterInfo &MRI)
: DeadCodeElimination(G, MRI) {}
bool rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove);
void removeOperand(NodeAddr<InstrNode*> IA, unsigned OpNum);