diff options
author | peter <peter@FreeBSD.org> | 1998-09-28 12:20:46 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-09-28 12:20:46 +0000 |
commit | 49a373f7fc0c7c403ab627b68917f379b4d1f521 (patch) | |
tree | 12add4d3427de941706cf8f5cfae48f36f33f33c /sys | |
parent | bf756cdf200a8b864ec04a5fbe17c7c7403fa935 (diff) | |
download | FreeBSD-src-49a373f7fc0c7c403ab627b68917f379b4d1f521.zip FreeBSD-src-49a373f7fc0c7c403ab627b68917f379b4d1f521.tar.gz |
Back out rev 1.6 (temporarily at least). <machine/asmacros.h> is used
here for getting the #defines for the removal of the leading '_' in symbols
in the assembler code. We could probably #include <machine/asnames.h>
instead, but everything else seems to use asmacros.h directly as well.
Once we convert symbols, this becomes irrelevant.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/i386/i386/globals.s | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/i386/i386/globals.s b/sys/i386/i386/globals.s index a1c2ce5..eb3a913 100644 --- a/sys/i386/i386/globals.s +++ b/sys/i386/i386/globals.s @@ -23,15 +23,13 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: globals.s,v 1.6 1998/06/21 14:45:00 bde Exp $ + * $Id: globals.s,v 1.7 1998/08/18 07:46:58 msmith Exp $ */ #include "opt_vm86.h" #include "opt_user_ldt.h" -#ifndef SMP #include <machine/asmacros.h> -#endif #include <machine/pmap.h> #include "assym.s" |