+2019-04-08 Andrea Corallo <andrea.corallo@arm.com>
+
+ PR target/83033
+ * config/aarch64/cortex-a57-fma-steering.c (fma_forest): Prohibit copy
+ construction.
+ (fma_root_node): Likewise.
+ (func_fma_steering): Likewise.
+
2019-04-08 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/89865
void dispatch ();
private:
+ /* Prohibit copy construction. */
+ fma_forest (const fma_forest &);
+
/* The list of roots that form this forest. */
std::list<fma_root_node *> *m_roots;
void rename (fma_forest *);
void dump_info (fma_forest *);
+private:
+ /* Prohibit copy construction. */
+ fma_node (const fma_node &);
+
protected:
/* Root node that lead to this node. */
fma_root_node *m_root;
void execute_fma_steering ();
private:
+ /* Prohibit copy construction. */
+ func_fma_steering (const func_fma_steering &);
+
void dfs (void (*) (fma_forest *), void (*) (fma_forest *, fma_root_node *),
void (*) (fma_forest *, fma_node *), bool);
void analyze ();