From f1027406feaaab8cda53065f1733cac852342356 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 27 Jun 1992 07:20:07 -0400 Subject: [PATCH] *** empty log message *** From-SVN: r1310 --- gcc/rtl.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gcc/rtl.c b/gcc/rtl.c index f0c3cf8ab27..04bc39c4093 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -282,6 +282,10 @@ copy_rtx (orig) XEXP (copy, i) = copy_rtx (XEXP (orig, i)); break; + case 'u': + XEXP (copy, i) = XEXP (orig, i); + break; + case 'E': case 'V': XVEC (copy, i) = XVEC (orig, i); @@ -351,6 +355,10 @@ copy_most_rtx (orig, may_share) XEXP (copy, i) = copy_most_rtx (XEXP (orig, i), may_share); break; + case 'u': + XEXP (copy, i) = XEXP (orig, i); + break; + case 'E': case 'V': XVEC (copy, i) = XVEC (orig, i); -- 2.30.2