diff options
author | Greg McGary <greg@mcgary.org> | 2000-07-05 02:14:59 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 2000-07-05 02:14:59 +0000 |
commit | 293c6b3cd8a4c5973a25d2ecdcf39618ac3494cc (patch) | |
tree | a8c7e9766780f1bc95f48eaefa8e7e5d800a533d /sysdeps | |
parent | ecce00a971d2725175c4dc200e6b2c122363d810 (diff) | |
download | glibc-293c6b3cd8a4c5973a25d2ecdcf39618ac3494cc.tar.gz glibc-293c6b3cd8a4c5973a25d2ecdcf39618ac3494cc.tar.xz glibc-293c6b3cd8a4c5973a25d2ecdcf39618ac3494cc.zip |
* sysdeps/i386/bits/setjmp.h (PUSH_SIGNAL_MASK): Fix typo.
* sysdeps/i386/bits/setjmp.h (PUSH_SIGNAL_MASK): Fix typo.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/i386/bits/setjmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |