*** empty log message ***

From-SVN: r1310
This commit is contained in:
Richard Kenner 1992-06-27 07:20:07 -04:00
parent 0a9295942a
commit f1027406fe
1 changed files with 8 additions and 0 deletions

View File

@ -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);