Module Name:    src
Committed By:   rin
Date:           Tue Jul 21 06:39:31 UTC 2020

Modified Files:
        src/sys/arch/amiga/amiga: locore.s

Log Message:
Align tmpstk to 4-byte boundary in the same manner as mac68k.

However, unfortunately, this does not fix strange crashes of GCC8-compiled
kernel, for which I cannot even enter DDB nor obtain crash dump.

We need further investigation...


To generate a diff of this commit:
cvs rdiff -u -r1.158 -r1.159 src/sys/arch/amiga/amiga/locore.s

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/amiga/amiga/locore.s
diff -u src/sys/arch/amiga/amiga/locore.s:1.158 src/sys/arch/amiga/amiga/locore.s:1.159
--- src/sys/arch/amiga/amiga/locore.s:1.158	Fri Jun 19 07:43:37 2020
+++ src/sys/arch/amiga/amiga/locore.s	Tue Jul 21 06:39:31 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: locore.s,v 1.158 2020/06/19 07:43:37 rin Exp $	*/
+/*	$NetBSD: locore.s,v 1.159 2020/07/21 06:39:31 rin Exp $	*/
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -1447,6 +1447,7 @@ ENTRY_NOPROFILE(fpeaemu60)
 
 	.data
 	.space	PAGE_SIZE
+	.align	4
 ASLOCAL(tmpstk)
 
 GLOBAL(mmutype)

Reply via email to