Remove "#ifndef __mc68010__ #error" I added when these {,u}divsi3.S and

{,u}modsi3.S were moved here (It was better to split the commit, sorry);
bootloader for sun3 still depends on them.
This commit is contained in:
rin 2020-04-23 03:12:49 +00:00
parent f33565b1ad
commit d295cd72e9
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: divsi3.S,v 1.3 2020/04/22 11:58:26 rin Exp $ */
/* $NetBSD: divsi3.S,v 1.4 2020/04/23 03:12:49 rin Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -39,13 +39,13 @@
#if 0
RCSID("from: @(#)divsi3.s 5.1 (Berkeley) 6/7/90")
#else
RCSID("$NetBSD: divsi3.S,v 1.3 2020/04/22 11:58:26 rin Exp $")
RCSID("$NetBSD: divsi3.S,v 1.4 2020/04/23 03:12:49 rin Exp $")
#endif
#endif /* LIBC_SCCS and not lint */
/* int / int */
#ifndef __mc68010__
#error
/* XXX sun3 need this for bootloader */
ENTRY(__divsi3)
movel 4(%sp),%d0
divsl 8(%sp),%d0

View File

@ -1,4 +1,4 @@
/* $NetBSD: modsi3.S,v 1.3 2020/04/22 11:58:26 rin Exp $ */
/* $NetBSD: modsi3.S,v 1.4 2020/04/23 03:12:49 rin Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -39,13 +39,13 @@
#if 0
RCSID("from: @(#)modsi3.s 5.1 (Berkeley) 6/7/90")
#else
RCSID("$NetBSD: modsi3.S,v 1.3 2020/04/22 11:58:26 rin Exp $")
RCSID("$NetBSD: modsi3.S,v 1.4 2020/04/23 03:12:49 rin Exp $")
#endif
#endif /* LIBC_SCCS and not lint */
/* int % int */
#ifndef __mc68010__
#error
/* XXX sun3 need this for bootloader */
ENTRY(__modsi3)
movel 4(%sp),%d1
#ifdef __mcoldfire__

View File

@ -1,4 +1,4 @@
/* $NetBSD: udivsi3.S,v 1.5 2020/04/22 11:58:26 rin Exp $ */
/* $NetBSD: udivsi3.S,v 1.6 2020/04/23 03:12:49 rin Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -39,13 +39,13 @@
#if 0
RCSID("from: @(#)udivsi3.s 5.1 (Berkeley) 6/7/90")
#else
RCSID("$NetBSD: udivsi3.S,v 1.5 2020/04/22 11:58:26 rin Exp $")
RCSID("$NetBSD: udivsi3.S,v 1.6 2020/04/23 03:12:49 rin Exp $")
#endif
#endif /* LIBC_SCCS and not lint */
/* unsigned / unsigned */
#ifndef __mc68010__
#error
/* XXX sun3 need this for bootloader */
ENTRY(__udivsi3)
movel 4(%sp),%d0
divul 8(%sp),%d0

View File

@ -1,4 +1,4 @@
/* $NetBSD: umodsi3.S,v 1.3 2020/04/22 11:58:26 rin Exp $ */
/* $NetBSD: umodsi3.S,v 1.4 2020/04/23 03:12:49 rin Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -39,13 +39,13 @@
#if 0
RCSID("from: @(#)umodsi3.s 5.1 (Berkeley) 6/7/90")(
#else
RCSID("$NetBSD: umodsi3.S,v 1.3 2020/04/22 11:58:26 rin Exp $")
RCSID("$NetBSD: umodsi3.S,v 1.4 2020/04/23 03:12:49 rin Exp $")
#endif
#endif /* LIBC_SCCS and not lint */
/* unsigned % unsigned */
#ifndef __mc68010__
#error
/* XXX sun3 need this for bootloader */
ENTRY(__umodsi3)
movel 4(%sp),%d1
#ifdef __mcoldfire__