From 7a72decc2e57c3516b14b7883fbf89a34dfce2b1 Mon Sep 17 00:00:00 2001 From: Jake Burkholder Date: Thu, 26 Apr 2001 13:57:03 +0000 Subject: [PATCH] Remove a leading underscore that prevented I386_CPU kernels from compiling. Submitted by: Alexander N. Kabaev PR: kern/26858 --- sys/amd64/amd64/support.S | 2 +- sys/amd64/amd64/support.s | 2 +- sys/i386/i386/support.s | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S index 46a1c511b75..70cc1441fc1 100644 --- a/sys/amd64/amd64/support.S +++ b/sys/amd64/amd64/support.S @@ -1301,7 +1301,7 @@ ENTRY(susword) shrl $IDXSHIFT,%edx andb $0xfc,%dl - leal _PTmap(%edx),%ecx + leal PTmap(%edx),%ecx shrl $IDXSHIFT,%ecx andb $0xfc,%cl testb $PG_V,PTmap(%ecx) /* PTE page must be valid */ diff --git a/sys/amd64/amd64/support.s b/sys/amd64/amd64/support.s index 46a1c511b75..70cc1441fc1 100644 --- a/sys/amd64/amd64/support.s +++ b/sys/amd64/amd64/support.s @@ -1301,7 +1301,7 @@ ENTRY(susword) shrl $IDXSHIFT,%edx andb $0xfc,%dl - leal _PTmap(%edx),%ecx + leal PTmap(%edx),%ecx shrl $IDXSHIFT,%ecx andb $0xfc,%cl testb $PG_V,PTmap(%ecx) /* PTE page must be valid */ diff --git a/sys/i386/i386/support.s b/sys/i386/i386/support.s index 46a1c511b75..70cc1441fc1 100644 --- a/sys/i386/i386/support.s +++ b/sys/i386/i386/support.s @@ -1301,7 +1301,7 @@ ENTRY(susword) shrl $IDXSHIFT,%edx andb $0xfc,%dl - leal _PTmap(%edx),%ecx + leal PTmap(%edx),%ecx shrl $IDXSHIFT,%ecx andb $0xfc,%cl testb $PG_V,PTmap(%ecx) /* PTE page must be valid */