From 88dc468feb730c563739c3f5cd997a1b542c50f6 Mon Sep 17 00:00:00 2001 From: matt Date: Fri, 21 Feb 2003 06:40:47 +0000 Subject: [PATCH] Fix some assembly botches. --- lib/libm/arch/vax/n_sincos.S | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/libm/arch/vax/n_sincos.S b/lib/libm/arch/vax/n_sincos.S index cc0a75f76bcc..33d2dba2161f 100644 --- a/lib/libm/arch/vax/n_sincos.S +++ b/lib/libm/arch/vax/n_sincos.S @@ -1,4 +1,4 @@ -/* $NetBSD: n_sincos.S,v 1.6 2002/07/14 19:55:24 matt Exp $ */ +/* $NetBSD: n_sincos.S,v 1.7 2003/02/21 06:40:47 matt Exp $ */ /* * Copyright (c) 1985, 1993 * The Regents of the University of California. All rights reserved. @@ -51,9 +51,9 @@ #include ENTRY(sinf, 0) - cvtfd 4(%ap),-(sp) - calls $2,sin - cvtdf r0,r0 + cvtfd 4(%ap),-(%sp) + calls $2,_C_LABEL(sin) + cvtdf %r0,%r0 ret ENTRY(sin, 0xfc0) @@ -86,9 +86,9 @@ ENTRY(sin, 0xfc0) */ ENTRY(cosf, 0) - cvtfd 4(%ap),-(sp) - calls $2,cos - cvtdf r0,r0 + cvtfd 4(%ap),-(%sp) + calls $2,_C_LABEL(cos) + cvtdf %r0,%r0 ret ENTRY(cos, 0x0fc0)