OSDN Git Service

*** empty log message ***
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 27 Jun 1992 11:20:07 +0000 (11:20 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 27 Jun 1992 11:20:07 +0000 (11:20 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1310 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/rtl.c

index f0c3cf8..04bc39c 100644 (file)
--- 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);