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-Tag: releases/gcc-4.9.0~3769 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cd4dd8f0f16978f1d26a00249a9b92bd5ad128e6;p=thirdparty%2Fgcc.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 47679d2c64f0..7ff5bd229483 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 f2828f2db35d..83f92ebb7a92 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 (); } };