aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--sysdeps/i386/bits/setjmp.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 63a54abbbe..e4b6a208f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -47,6 +47,8 @@
2000-07-03 Greg McGary <greg@mcgary.org>
+ * sysdeps/i386/bits/setjmp.h (PUSH_SIGNAL_MASK): Fix typo.
+
* csu/Makefile (extra-objs, install-lib): Add BP objects conditionally.
($(objpfx)b$(start-installed-name)): Add non-elf rule.
diff --git a/sysdeps/i386/bits/setjmp.h b/sysdeps/i386/bits/setjmp.h
index 327e5670ac..66047643db 100644
--- a/sysdeps/i386/bits/setjmp.h
+++ b/sysdeps/i386/bits/setjmp.h
@@ -41,7 +41,7 @@
popl %ecx; /* jmp_buf value */ \
popl %edx; /* jmp_buf low bound */ \
pushl 0(%esp); /* jmp_buf high bound */ \
- movel $MASK, 4(%esp); \
+ movl $MASK, 4(%esp); \
pushl %edx; \
pushl %ecx; \
pushl %eax