From 9d0812746b99bc5a83dbe71553364bfd55924058 Mon Sep 17 00:00:00 2001 From: em Date: Thu, 14 Mar 1985 17:33:28 +0000 Subject: [PATCH] The assembler proved to contain yet another bug. .align in text segments will not work for values that are not a divisor of the gcd of the instruction sizes. --- mach/i86/libem/tail.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach/i86/libem/tail.s b/mach/i86/libem/tail.s index 702f47f34..cdadec8b7 100644 --- a/mach/i86/libem/tail.s +++ b/mach/i86/libem/tail.s @@ -3,9 +3,9 @@ ! $Header$ .text - .align 2 endtext: _etext: + .align 2 .data .align 2 enddata: -- 2.34.1