summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Leonard <d@cvs.openbsd.org>1999-02-03 05:25:02 +0000
committerDavid Leonard <d@cvs.openbsd.org>1999-02-03 05:25:02 +0000
commit2e0a49b8543311f3dad535073c11f5f076d9cf98 (patch)
tree5501b00e26b3bdc06430dd3860c36236e8d17521
parent88bf8b42f81ba696499db38fbb7ca08e36507c35 (diff)
comment out broken float save stuff for the time being
-rw-r--r--lib/libc_r/arch/alpha/uthread_machdep.h10
-rw-r--r--lib/libpthread/arch/alpha/uthread_machdep.h10
2 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc_r/arch/alpha/uthread_machdep.h b/lib/libc_r/arch/alpha/uthread_machdep.h
index b9cf839f6bd..c64006640b8 100644
--- a/lib/libc_r/arch/alpha/uthread_machdep.h
+++ b/lib/libc_r/arch/alpha/uthread_machdep.h
@@ -1,21 +1,21 @@
/*
* OpenBSD/alpha machine-dependent thread macros
*
- * $OpenBSD: uthread_machdep.h,v 1.2 1999/01/17 23:49:48 d Exp $
+ * $OpenBSD: uthread_machdep.h,v 1.3 1999/02/03 05:25:01 d Exp $
*/
/* save the floating point state of a thread */
#define _thread_machdep_save_float_state(thr) \
{ \
- char *fdata = (char*)((thr)->_machdep.saved_fp); \
- __asm__("fsave %0"::"m" (*fdata)); \
+/* char *fdata = (char*)((thr)->_machdep.saved_fp); \
+ __asm__("fsave %0"::"m" (*fdata)); */ \
}
/* restore the floating point state of a thread */
#define _thread_machdep_restore_float_state(thr) \
{ \
- char *fdata = (char*)((thr)->_machdep.saved_fp); \
- __asm__("frstor %0"::"m" (*fdata)); \
+/* char *fdata = (char*)((thr)->_machdep.saved_fp); \
+ __asm__("frstor %0"::"m" (*fdata)); */ \
}
/* initialise the jmpbuf stack frame so it continues from entry */
diff --git a/lib/libpthread/arch/alpha/uthread_machdep.h b/lib/libpthread/arch/alpha/uthread_machdep.h
index b9cf839f6bd..c64006640b8 100644
--- a/lib/libpthread/arch/alpha/uthread_machdep.h
+++ b/lib/libpthread/arch/alpha/uthread_machdep.h
@@ -1,21 +1,21 @@
/*
* OpenBSD/alpha machine-dependent thread macros
*
- * $OpenBSD: uthread_machdep.h,v 1.2 1999/01/17 23:49:48 d Exp $
+ * $OpenBSD: uthread_machdep.h,v 1.3 1999/02/03 05:25:01 d Exp $
*/
/* save the floating point state of a thread */
#define _thread_machdep_save_float_state(thr) \
{ \
- char *fdata = (char*)((thr)->_machdep.saved_fp); \
- __asm__("fsave %0"::"m" (*fdata)); \
+/* char *fdata = (char*)((thr)->_machdep.saved_fp); \
+ __asm__("fsave %0"::"m" (*fdata)); */ \
}
/* restore the floating point state of a thread */
#define _thread_machdep_restore_float_state(thr) \
{ \
- char *fdata = (char*)((thr)->_machdep.saved_fp); \
- __asm__("frstor %0"::"m" (*fdata)); \
+/* char *fdata = (char*)((thr)->_machdep.saved_fp); \
+ __asm__("frstor %0"::"m" (*fdata)); */ \
}
/* initialise the jmpbuf stack frame so it continues from entry */