summaryrefslogtreecommitdiff
path: root/sys/gnu/arch/i386/fpemul/reg_div.s
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2004-01-13 18:08:49 +0000
committerMarc Espie <espie@cvs.openbsd.org>2004-01-13 18:08:49 +0000
commit879520a21654c8b30d4e81ee0a7496dfc49d93fa (patch)
tree90ed7addb16f95ef8921284eea0ee709a7034e88 /sys/gnu/arch/i386/fpemul/reg_div.s
parent1249347f01881acbeadeedd30e9b439c8eca1718 (diff)
silence preprocessor.
ok grange@, deraadt@
Diffstat (limited to 'sys/gnu/arch/i386/fpemul/reg_div.s')
-rw-r--r--sys/gnu/arch/i386/fpemul/reg_div.s18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/gnu/arch/i386/fpemul/reg_div.s b/sys/gnu/arch/i386/fpemul/reg_div.s
index d6b402749ec..bb2729af697 100644
--- a/sys/gnu/arch/i386/fpemul/reg_div.s
+++ b/sys/gnu/arch/i386/fpemul/reg_div.s
@@ -1,5 +1,5 @@
.file "reg_div.S"
-/* $OpenBSD: reg_div.s,v 1.4 2003/07/03 04:09:07 drahn Exp $ */
+/* $OpenBSD: reg_div.s,v 1.5 2004/01/13 18:08:48 espie Exp $ */
/*
* reg_div.S
*
@@ -114,7 +114,7 @@ xL_arg1_not_denormal:
jnz FPU_Arith_exit
xL_arg2_not_denormal:
-#endif DENORM_OPERAND
+#endif /* DENORM_OPERAND */
/* Both arguments are TW_Valid */
movb TW_Valid,TAG(%edi)
@@ -170,7 +170,7 @@ L_no_NaN_arg:
/* arg2 must be zero or valid */
cmpb TW_Zero,TAG(%ebx)
ja L_unknown_tags
-#endif PARANOID
+#endif /* PARANOID */
/* Note that p16-9 says that infinity/0 returns infinity */
jmp L_copy_arg1 /* Answer is Inf */
@@ -183,7 +183,7 @@ L_inf_valid:
call _C_LABEL(denormal_operand)
orl %eax,%eax
jnz FPU_Arith_exit
-#endif DENORM_OPERAND
+#endif /* DENORM_OPERAND */
jmp L_copy_arg1 /* Answer is Inf */
@@ -198,7 +198,7 @@ L_arg1_not_inf:
/* arg1 must be valid */
cmpb TW_Valid,TAG(%esi)
ja L_unknown_tags
-#endif PARANOID
+#endif /* PARANOID */
/* Division by zero error */
pushl %edi /* destination */
@@ -222,7 +222,7 @@ L_arg2_not_zero:
call _C_LABEL(denormal_operand)
orl %eax,%eax
jnz FPU_Arith_exit
-#endif DENORM_OPERAND
+#endif /* DENORM_OPERAND */
jmp L_return_zero /* Answer is zero */
@@ -231,7 +231,7 @@ L_arg2_not_inf:
#ifdef PARANOID
cmpb TW_Zero,TAG(%esi)
jne L_unknown_tags
-#endif PARANOID
+#endif /* PARANOID */
/* arg1 is zero, arg2 is not Infinity or a NaN */
@@ -242,7 +242,7 @@ L_arg2_not_inf:
call _C_LABEL(denormal_operand)
orl %eax,%eax
jnz FPU_Arith_exit
-#endif DENORM_OPERAND
+#endif /* DENORM_OPERAND */
L_copy_arg1:
movb TAG(%esi),%al
@@ -299,4 +299,4 @@ L_unknown_tags:
movl _CONST_QNaN+8,%eax
movl %eax,SIGH(%edi)
jmp LDiv_exit
-#endif PARANOID
+#endif /* PARANOID */