From 7a153194ec575997818d16f6ee3e0c909e8be1f8 Mon Sep 17 00:00:00 2001 From: obrien Date: Sat, 31 Jan 2009 11:37:21 +0000 Subject: Change some movl's to mov's. Newer GAS no longer accept 'movl' instructions for moving between a segment register and a 32-bit memory location. Looked at by: jhb --- sys/compat/ndis/winx32_wrap.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/compat') diff --git a/sys/compat/ndis/winx32_wrap.S b/sys/compat/ndis/winx32_wrap.S index 065d409..c051504 100644 --- a/sys/compat/ndis/winx32_wrap.S +++ b/sys/compat/ndis/winx32_wrap.S @@ -369,7 +369,7 @@ ENTRY(x86_getfs) ret ENTRY(x86_setfs) - movl 4(%esp),%fs + mov 4(%esp),%fs ret ENTRY(x86_gettid) -- cgit v1.1