diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-15 18:47:59 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-21 05:12:47 -0400 |
commit | cae55066cb1ce3f8572ddddbd3ec3c54b973a89c (patch) | |
tree | 91b106168432448ebb07766cc4e88bf778739036 /arch/mips/math-emu/ieee754dp.c | |
parent | f80cc08d78556bdc66bf0b75ec412688d8ec6907 (diff) |
MIPS: math-emu: Mark exception handling functions as __cold.
Optimizes the code flow and shaves of half a percent of the math-emu
code size.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/ieee754dp.c')
-rw-r--r-- | arch/mips/math-emu/ieee754dp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/mips/math-emu/ieee754dp.c b/arch/mips/math-emu/ieee754dp.c index 068e56be8de9..df59d16bd4fd 100644 --- a/arch/mips/math-emu/ieee754dp.c +++ b/arch/mips/math-emu/ieee754dp.c | |||
@@ -23,6 +23,7 @@ | |||
23 | * ######################################################################## | 23 | * ######################################################################## |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include <linux/compiler.h> | ||
26 | 27 | ||
27 | #include "ieee754dp.h" | 28 | #include "ieee754dp.h" |
28 | 29 | ||
@@ -45,7 +46,7 @@ int ieee754dp_issnan(ieee754dp x) | |||
45 | } | 46 | } |
46 | 47 | ||
47 | 48 | ||
48 | ieee754dp ieee754dp_xcpt(ieee754dp r, const char *op, ...) | 49 | ieee754dp __cold ieee754dp_xcpt(ieee754dp r, const char *op, ...) |
49 | { | 50 | { |
50 | struct ieee754xctx ax; | 51 | struct ieee754xctx ax; |
51 | if (!TSTX()) | 52 | if (!TSTX()) |
@@ -60,7 +61,7 @@ ieee754dp ieee754dp_xcpt(ieee754dp r, const char *op, ...) | |||
60 | return ax.rv.dp; | 61 | return ax.rv.dp; |
61 | } | 62 | } |
62 | 63 | ||
63 | ieee754dp ieee754dp_nanxcpt(ieee754dp r, const char *op, ...) | 64 | ieee754dp __cold ieee754dp_nanxcpt(ieee754dp r, const char *op, ...) |
64 | { | 65 | { |
65 | struct ieee754xctx ax; | 66 | struct ieee754xctx ax; |
66 | 67 | ||