diff options
author | Steve Passe <fsmp@FreeBSD.org> | 1997-09-02 19:40:13 +0000 |
---|---|---|
committer | Steve Passe <fsmp@FreeBSD.org> | 1997-09-02 19:40:13 +0000 |
commit | 010e6696151cfcc4d6743216118a3f07040859b4 (patch) | |
tree | 3f16d17cc16c3cc2bfc54cc50bf9849a8335ef20 | |
parent | 738111e63b13c636f74a5b28f33a91cb131981cc (diff) |
Notes
-rw-r--r-- | sys/amd64/isa/icu_ipl.S | 8 | ||||
-rw-r--r-- | sys/amd64/isa/icu_ipl.s | 8 | ||||
-rw-r--r-- | sys/i386/isa/icu_ipl.s | 8 |
3 files changed, 9 insertions, 15 deletions
diff --git a/sys/amd64/isa/icu_ipl.S b/sys/amd64/isa/icu_ipl.S index 2dc0e8d15acd..54ec5d8d1ea5 100644 --- a/sys/amd64/isa/icu_ipl.S +++ b/sys/amd64/isa/icu_ipl.S @@ -34,14 +34,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: icu_ipl.s,v 1.2 1997/08/22 05:05:05 smp Exp smp $ + * $Id: icu_ipl.s,v 1.2 1997/08/24 00:05:13 fsmp Exp $ */ .data ALIGN_DATA - - .globl _vec -_vec: +vec: .long vec0, vec1, vec2, vec3, vec4, vec5, vec6, vec7 .long vec8, vec9, vec10, vec11, vec12, vec13, vec14, vec15 @@ -104,7 +102,7 @@ splz_unpend: * We should change the interface so that the unit number is not * determined at config time. */ - jmp *_vec(,%ecx,4) + jmp *vec(,%ecx,4) ALIGN_TEXT splz_swi: diff --git a/sys/amd64/isa/icu_ipl.s b/sys/amd64/isa/icu_ipl.s index 2dc0e8d15acd..54ec5d8d1ea5 100644 --- a/sys/amd64/isa/icu_ipl.s +++ b/sys/amd64/isa/icu_ipl.s @@ -34,14 +34,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: icu_ipl.s,v 1.2 1997/08/22 05:05:05 smp Exp smp $ + * $Id: icu_ipl.s,v 1.2 1997/08/24 00:05:13 fsmp Exp $ */ .data ALIGN_DATA - - .globl _vec -_vec: +vec: .long vec0, vec1, vec2, vec3, vec4, vec5, vec6, vec7 .long vec8, vec9, vec10, vec11, vec12, vec13, vec14, vec15 @@ -104,7 +102,7 @@ splz_unpend: * We should change the interface so that the unit number is not * determined at config time. */ - jmp *_vec(,%ecx,4) + jmp *vec(,%ecx,4) ALIGN_TEXT splz_swi: diff --git a/sys/i386/isa/icu_ipl.s b/sys/i386/isa/icu_ipl.s index 2dc0e8d15acd..54ec5d8d1ea5 100644 --- a/sys/i386/isa/icu_ipl.s +++ b/sys/i386/isa/icu_ipl.s @@ -34,14 +34,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: icu_ipl.s,v 1.2 1997/08/22 05:05:05 smp Exp smp $ + * $Id: icu_ipl.s,v 1.2 1997/08/24 00:05:13 fsmp Exp $ */ .data ALIGN_DATA - - .globl _vec -_vec: +vec: .long vec0, vec1, vec2, vec3, vec4, vec5, vec6, vec7 .long vec8, vec9, vec10, vec11, vec12, vec13, vec14, vec15 @@ -104,7 +102,7 @@ splz_unpend: * We should change the interface so that the unit number is not * determined at config time. */ - jmp *_vec(,%ecx,4) + jmp *vec(,%ecx,4) ALIGN_TEXT splz_swi: |