aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1992-06-27 07:20:07 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1992-06-27 07:20:07 -0400
commitf1027406feaaab8cda53065f1733cac852342356 (patch)
treeac47a6a1b9c36bb039a5baa6e7c26d3836b18913 /gcc/rtl.c
parent0a9295942a2da05c9d8f4f1154cfcb303e210e07 (diff)
downloadgcc-f1027406feaaab8cda53065f1733cac852342356.zip
gcc-f1027406feaaab8cda53065f1733cac852342356.tar.gz
gcc-f1027406feaaab8cda53065f1733cac852342356.tar.bz2
*** empty log message ***
From-SVN: r1310
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index f0c3cf8..04bc39c 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);