diff options
Diffstat (limited to 'arch/x86/tools')
| -rw-r--r-- | arch/x86/tools/relocs.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/arch/x86/tools/relocs.c b/arch/x86/tools/relocs.c index 0c2fae8d929d..73eb7fd4aec4 100644 --- a/arch/x86/tools/relocs.c +++ b/arch/x86/tools/relocs.c @@ -992,11 +992,12 @@ static void emit_relocs(int as_text, int use_real_mode)  		die("Segment relocations found but --realmode not specified\n");  	/* Order the relocations for more efficient processing */ -	sort_relocs(&relocs16);  	sort_relocs(&relocs32);  #if ELF_BITS == 64  	sort_relocs(&relocs32neg);  	sort_relocs(&relocs64); +#else +	sort_relocs(&relocs16);  #endif  	/* Print the relocations */ |