From: Andrew Pinski Date: Wed, 10 Dec 2003 17:37:18 +0000 (+0000) Subject: emit-rtl.c (copy_rtx_if_shared_1): Fix warning. X-Git-Tag: releases/gcc-3.3.3~214 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c6dbe70f3fb9df21424fc3a8c9348da81260f9a;p=thirdparty%2Fgcc.git emit-rtl.c (copy_rtx_if_shared_1): Fix warning. 2003-12-10 Andrew Pinski * emit-rtl.c (copy_rtx_if_shared_1): Fix warning. From-SVN: r74504 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 139b1bef3268..158133a5c535 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-12-10 Andrew Pinski + + * emit-rtl.c (copy_rtx_if_shared_1): Fix warning. + 2003-12-10 Nathanael Nerode Backport from mainline (fixes unreported regression): diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index ef0e15693051..ac69c0bf15c9 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -2642,7 +2642,7 @@ repeat: because it looks safe and profitable in one context, but in some other context it creates unrecognizable RTL. */ if (CONSTANT_ADDRESS_P (XEXP (x, 0))) - return x; + return; break;