aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy@goop.org>2008-07-10 15:52:52 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-10 15:55:59 -0400
commit27cb0a75ba252ea7294d67232c4bbbac3f2b2656 (patch)
tree3a72fbafa37e6222f3bdade4ca7bfdaaab300c35 /arch
parente54afe38630e3b577968428f48ed8ef1e13a2a15 (diff)
x86: fix compile error in current tip.git
Gas 2.15 complains about 32-bit registers being used in lea. AS arch/x86/lib/copy_user_64.o /local/scratch-2/jeremy/hg/xen/paravirt/linux/arch/x86/lib/copy_user_64.S: Assembler messages: /local/scratch-2/jeremy/hg/xen/paravirt/linux/arch/x86/lib/copy_user_64.S:188: Error: `(%edx,%ecx,8)' is not a valid 64 bit base/index expression /local/scratch-2/jeremy/hg/xen/paravirt/linux/arch/x86/lib/copy_user_64.S:257: Error: `(%edx,%ecx,8)' is not a valid 64 bit base/index expression AS arch/x86/lib/copy_user_nocache_64.o /local/scratch-2/jeremy/hg/xen/paravirt/linux/arch/x86/lib/copy_user_nocache_64.S: Assembler messages: /local/scratch-2/jeremy/hg/xen/paravirt/linux/arch/x86/lib/copy_user_nocache_64.S:107: Error: `(%edx,%ecx,8)' is not a valid 64 bit base/index expression Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Cc: Vitaly Mayatskikh <v.mayatskih@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/lib/copy_user_64.S4
-rw-r--r--arch/x86/lib/copy_user_nocache_64.S2
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/lib/copy_user_64.S b/arch/x86/lib/copy_user_64.S
index e5afb4ad3f1c..dfdf428975c0 100644
--- a/arch/x86/lib/copy_user_64.S
+++ b/arch/x86/lib/copy_user_64.S
@@ -185,7 +185,7 @@ ENTRY(copy_user_generic_unrolled)
18530: shll $6,%ecx 18530: shll $6,%ecx
186 addl %ecx,%edx 186 addl %ecx,%edx
187 jmp 60f 187 jmp 60f
18840: leal (%edx,%ecx,8),%edx 18840: lea (%rdx,%rcx,8),%rdx
189 jmp 60f 189 jmp 60f
19050: movl %ecx,%edx 19050: movl %ecx,%edx
19160: jmp copy_user_handle_tail /* ecx is zerorest also */ 19160: jmp copy_user_handle_tail /* ecx is zerorest also */
@@ -254,7 +254,7 @@ ENTRY(copy_user_generic_string)
254 ret 254 ret
255 255
256 .section .fixup,"ax" 256 .section .fixup,"ax"
25711: leal (%edx,%ecx,8),%ecx 25711: lea (%rdx,%rcx,8),%rcx
25812: movl %ecx,%edx /* ecx is zerorest also */ 25812: movl %ecx,%edx /* ecx is zerorest also */
259 jmp copy_user_handle_tail 259 jmp copy_user_handle_tail
260 .previous 260 .previous
diff --git a/arch/x86/lib/copy_user_nocache_64.S b/arch/x86/lib/copy_user_nocache_64.S
index 93353d6a5263..40e0e309d27e 100644
--- a/arch/x86/lib/copy_user_nocache_64.S
+++ b/arch/x86/lib/copy_user_nocache_64.S
@@ -104,7 +104,7 @@ ENTRY(__copy_user_nocache)
10430: shll $6,%ecx 10430: shll $6,%ecx
105 addl %ecx,%edx 105 addl %ecx,%edx
106 jmp 60f 106 jmp 60f
10740: leal (%edx,%ecx,8),%edx 10740: lea (%rdx,%rcx,8),%rdx
108 jmp 60f 108 jmp 60f
10950: movl %ecx,%edx 10950: movl %ecx,%edx
11060: sfence 11060: sfence