avoid *REG constructions because of bug in assembler
authorceriel <none@none>
Mon, 2 Nov 1987 10:52:40 +0000 (10:52 +0000)
committerceriel <none@none>
Mon, 2 Nov 1987 10:52:40 +0000 (10:52 +0000)
mach/vax4/top/table

index ea754dd..19a4ce8 100644 (file)
@@ -206,12 +206,12 @@ jneq LAB : jbr LAB2 : labdef LAB ->       jeql LAB2 : labdef LAB;
 
 /* Register propagation */
 
-movl REG,A : ANY *A            ->      movl REG,A : ANY *REG;
-movl REG,A : ANY *A,X          ->      movl REG,A : ANY *REG,X;
-movl REG,A : ANY X,*A          ->      movl REG,A : ANY X,*REG;
-movl REG,A : ANY *A,X,Y                ->      movl REG,A : ANY *REG,X,Y;
-movl REG,A : ANY X,*A,Y                ->      movl REG,A : ANY X,*REG,Y;
-movl REG,A : ANY X,Y,*A                ->      movl REG,A : ANY X,Y,*REG;
+movl REG,A : ANY *A            ->      movl REG,A : ANY (REG);
+movl REG,A : ANY *A,X          ->      movl REG,A : ANY (REG),X;
+movl REG,A : ANY X,*A          ->      movl REG,A : ANY X,(REG);
+movl REG,A : ANY *A,X,Y                ->      movl REG,A : ANY (REG),X,Y;
+movl REG,A : ANY X,*A,Y                ->      movl REG,A : ANY X,(REG),Y;
+movl REG,A : ANY X,Y,*A                ->      movl REG,A : ANY X,Y,(REG);
 
 
 %%;