From 23d14a85327252ee07332ca13b2b7973b410bf7d Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Tue, 22 Apr 2008 16:21:07 -0700 Subject: Fix "Warning: indirect jmp without `*'". The generated code is byte-for-byte identical. Signed-off-by: Jamey Sharp Signed-off-by: Simon Horman --- purgatory/arch/i386/entry32-16-debug.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/purgatory/arch/i386/entry32-16-debug.S b/purgatory/arch/i386/entry32-16-debug.S index 558ac1f..82b58ca 100644 --- a/purgatory/arch/i386/entry32-16-debug.S +++ b/purgatory/arch/i386/entry32-16-debug.S @@ -191,5 +191,5 @@ DEBUG_CHAR('j') entry16_debug_old_first32: .long 0x100000 .size entry16_debug_old_first32, . - entry16_debug_old_first32 - jmp %eax + jmp *%eax .size entry16_debug_first32, . - entry16_debug_first32 -- cgit