diff options
author | deischen <deischen@FreeBSD.org> | 2003-04-21 03:59:07 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2003-04-21 03:59:07 +0000 |
commit | 3cce5fea028cce36184ccd2bfa5ac90cf3f30465 (patch) | |
tree | f97c2ab56341d4b9af97ee4e2103388a7a95e2e1 /lib | |
parent | cc72466a4a175d664939437effff2fe5335b946e (diff) | |
download | FreeBSD-src-3cce5fea028cce36184ccd2bfa5ac90cf3f30465.zip FreeBSD-src-3cce5fea028cce36184ccd2bfa5ac90cf3f30465.tar.gz |
Use popfl to get the flags off the stack instead of popf.
Submitted by: davidxu
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpthread/arch/i386/i386/thr_switch.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/arch/i386/i386/thr_switch.S b/lib/libpthread/arch/i386/i386/thr_switch.S index 27881dd..4438b90 100644 --- a/lib/libpthread/arch/i386/i386/thr_switch.S +++ b/lib/libpthread/arch/i386/i386/thr_switch.S @@ -106,6 +106,6 @@ ENTRY(_thread_switch) movl %ebx,(%ecx) popl %ecx /* %ecx off stack */ popl %ebx /* %ebx off stack */ - popf /* flags off stack */ + popfl /* flags off stack */ 5: ret /* %eip off stack */ |