<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">[PATCH] Fix indirect jmp without *

Gcc has been warning about these for long enough - may as well fix them. IIRC,
they were originally left out because the old gas2masm tool couldn't
understand them.

diff -urN a/common/d_parta.S head/common/d_parta.S
--- a/common/d_parta.S	2006-02-19 08:15:39.000000000 +1030
+++ head/common/d_parta.S	2006-02-19 07:29:50.000000000 +1030
@@ -220,7 +220,7 @@
 	cmpl	$4,%eax
 	ja	LDefault
 
-	jmp	DP_EntryTable-4(,%eax,4)
+	jmp	*DP_EntryTable-4(,%eax,4)
 
 // 1x1
 .globl	DP_1x1
diff -urN a/common/d_polysa.S head/common/d_polysa.S
--- a/common/d_polysa.S	2006-02-19 08:15:39.000000000 +1030
+++ head/common/d_polysa.S	2006-02-19 07:37:21.000000000 +1030
@@ -843,7 +843,7 @@
 	pushl	%esi
 
 	movl	spanpackage_t_ptex(%esi),%esi
-	jmp	aff8entryvec_table(,%eax,4)
+	jmp	*aff8entryvec_table(,%eax,4)
 
 // %bx = count of full and partial loops
 // %ebx high word = sfrac
</pre></body></html>