From: Joern Rennecke Date: Tue, 1 Oct 2013 22:03:47 +0000 (+0000) Subject: arc.c (pass_arc_ifcvt::clone): Update for ctxt_ ->m_ctxt change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cd4dd8f0f16978f1d26a00249a9b92bd5ad128e6;p=gcc.git arc.c (pass_arc_ifcvt::clone): Update for ctxt_ ->m_ctxt change. * config/arc/arc.c (pass_arc_ifcvt::clone): Update for ctxt_ ->m_ctxt change. From-SVN: r203093 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 47679d2c64f..7ff5bd22948 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-10-01 Joern Rennecke + + * config/arc/arc.c (pass_arc_ifcvt::clone): + Update for ctxt_ ->m_ctxt change. + 2013-10-01 Jeff Law * tree-ssa-threadupdate.c (struct redirection_data): Delete diff --git a/gcc/config/arc/arc.c b/gcc/config/arc/arc.c index f2828f2db35..83f92ebb7a9 100644 --- a/gcc/config/arc/arc.c +++ b/gcc/config/arc/arc.c @@ -616,7 +616,7 @@ public: {} /* opt_pass methods: */ - opt_pass * clone () { return new pass_arc_ifcvt (ctxt_); } + opt_pass * clone () { return new pass_arc_ifcvt (m_ctxt); } unsigned int execute () { return arc_ifcvt (); } };