mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
23 lines
558 B
Plaintext
23 lines
558 B
Plaintext
--- m3/m3core/src/runtime/FreeBSD2/_fpsetjmp.s.orig Mon Nov 7 13:11:12 1994
|
|
+++ m3/m3core/src/runtime/FreeBSD2/_fpsetjmp.s Fri Aug 28 13:45:40 1998
|
|
@@ -55,6 +55,9 @@
|
|
.globl __fpsetjmp;
|
|
.type __fpsetjmp,@function;
|
|
__fpsetjmp:
|
|
+.globl _fpsetjmp;
|
|
+.type _fpsetjmp,@function;
|
|
+_fpsetjmp:
|
|
movl 4(%esp),%eax
|
|
movl 0(%esp),%edx
|
|
movl %edx, 0(%eax)
|
|
@@ -71,6 +74,9 @@
|
|
.globl __fplongjmp;
|
|
.type __fplongjmp,@function;
|
|
__fplongjmp:
|
|
+.globl _fplongjmp;
|
|
+.type _fplongjmp,@function;
|
|
+_fplongjmp:
|
|
movl 4(%esp),%edx
|
|
movl 8(%esp),%eax
|
|
movl 0(%edx),%ecx
|