summaryrefslogtreecommitdiff
path: root/arch/mips/math-emu/ieee754sp.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2014-04-16 00:47:59 +0200
committerRalf Baechle <ralf@linux-mips.org>2014-05-21 11:12:47 +0200
commitcae55066cb1ce3f8572ddddbd3ec3c54b973a89c (patch)
tree91b106168432448ebb07766cc4e88bf778739036 /arch/mips/math-emu/ieee754sp.c
parentf80cc08d78556bdc66bf0b75ec412688d8ec6907 (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/ieee754sp.c')
-rw-r--r--arch/mips/math-emu/ieee754sp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/mips/math-emu/ieee754sp.c b/arch/mips/math-emu/ieee754sp.c
index 15d1e36cfe64..dd3ecd62e469 100644
--- a/arch/mips/math-emu/ieee754sp.c
+++ b/arch/mips/math-emu/ieee754sp.c
@@ -23,6 +23,7 @@
* ########################################################################
*/
+#include <linux/compiler.h>
#include "ieee754sp.h"
@@ -45,7 +46,7 @@ int ieee754sp_issnan(ieee754sp x)
}
-ieee754sp ieee754sp_xcpt(ieee754sp r, const char *op, ...)
+ieee754sp __cold ieee754sp_xcpt(ieee754sp r, const char *op, ...)
{
struct ieee754xctx ax;
@@ -61,7 +62,7 @@ ieee754sp ieee754sp_xcpt(ieee754sp r, const char *op, ...)
return ax.rv.sp;
}
-ieee754sp ieee754sp_nanxcpt(ieee754sp r, const char *op, ...)
+ieee754sp __cold ieee754sp_nanxcpt(ieee754sp r, const char *op, ...)
{
struct ieee754xctx ax;