diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2011-03-09 12:54:27 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-04-21 14:32:38 -0700 |
commit | 26a92fe2e4418a73b554c9e335840d424a2a4136 (patch) | |
tree | 2c65166fdd445923013292c12aadf67aee747dc8 /arch | |
parent | 5f1c356a3fadc0c19922d660da723b79bcc9aad7 (diff) | |
download | lwn-26a92fe2e4418a73b554c9e335840d424a2a4136.tar.gz lwn-26a92fe2e4418a73b554c9e335840d424a2a4136.zip |
sparc: Fix .size directive for do_int_load
[ Upstream commit 35043c428f1fcb92feb5792f5878a8852ee00771 ]
gas used to accept (and ignore?) .size directives which referred to
undefined symbols, as this does. In binutils 2.21 these are treated
as errors.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/kernel/una_asm_64.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/una_asm_64.S b/arch/sparc/kernel/una_asm_64.S index be183fe41443..1c8d33228b2a 100644 --- a/arch/sparc/kernel/una_asm_64.S +++ b/arch/sparc/kernel/una_asm_64.S @@ -127,7 +127,7 @@ do_int_load: wr %o5, 0x0, %asi retl mov 0, %o0 - .size __do_int_load, .-__do_int_load + .size do_int_load, .-do_int_load .section __ex_table,"a" .word 4b, __retl_efault |