diff options
author | Andi Kleen <ak@suse.de> | 2007-05-11 05:23:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-11 15:53:00 -0400 |
commit | fd0581bbb40d8f4b0e4b3a4de2258a50df37bb57 (patch) | |
tree | adcb114ce77dd6ca4ecd11c54f988218de64a487 /arch | |
parent | 1f8a6b658a943b4f04a1fc7b3a420360202c86cd (diff) |
i386: Fix compilation of verify_cpu.S on old binutils
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/verify_cpu.S | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/i386/kernel/verify_cpu.S b/arch/i386/kernel/verify_cpu.S index e51a8695d54e..b2a9d80b6421 100644 --- a/arch/i386/kernel/verify_cpu.S +++ b/arch/i386/kernel/verify_cpu.S | |||
@@ -10,7 +10,9 @@ verify_cpu: | |||
10 | 10 | ||
11 | #if CONFIG_X86_MINIMUM_CPU_MODEL >= 4 | 11 | #if CONFIG_X86_MINIMUM_CPU_MODEL >= 4 |
12 | pushfl | 12 | pushfl |
13 | orl $(1<<18),(%esp) # try setting AC | 13 | pop %eax |
14 | orl $(1<<18),%eax # try setting AC | ||
15 | push %eax | ||
14 | popfl | 16 | popfl |
15 | pushfl | 17 | pushfl |
16 | popl %eax | 18 | popl %eax |