forked from OSchip/llvm-project
Replace inherited constructor with an explicit one
Some bots failed when the inherited constructor was used. llvm-svn: 257508
This commit is contained in:
parent
09eb0b3b3f
commit
f62d44be28
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue