From 6c2a22923c06338ee10efe74d3a86e700d44c83d Mon Sep 17 00:00:00 2001 From: Daniel Eischen Date: Mon, 21 Apr 2003 03:59:07 +0000 Subject: [PATCH] Use popfl to get the flags off the stack instead of popf. Submitted by: davidxu --- lib/libpthread/arch/i386/i386/thr_switch.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libpthread/arch/i386/i386/thr_switch.S b/lib/libpthread/arch/i386/i386/thr_switch.S index 27881dda24f8..4438b90a5a23 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 */