aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2005-10-23 08:48:12 -0400
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 14:32:52 -0400
commit3c5c8f6748ce5a4a63ac7d025ddca4a01574a1a7 (patch)
tree6e3958230b27e1bed66789245c847075ff27efef /arch/mips
parentefec3c4e962d4cafbb8f0a050d05d1cd6e95458d (diff)
Delete unused ieee754_cname[] and declaration.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/math-emu/ieee754.c10
-rw-r--r--arch/mips/math-emu/ieee754.h1
2 files changed, 0 insertions, 11 deletions
diff --git a/arch/mips/math-emu/ieee754.c b/arch/mips/math-emu/ieee754.c
index ed7fc87aeac5..a93c45dbdefd 100644
--- a/arch/mips/math-emu/ieee754.c
+++ b/arch/mips/math-emu/ieee754.c
@@ -42,16 +42,6 @@
42#define SP_EMIN (-126) 42#define SP_EMIN (-126)
43#define SP_EMAX 127 43#define SP_EMAX 127
44 44
45/* indexed by class */
46const char *const ieee754_cname[] = {
47 "Normal",
48 "Zero",
49 "Denormal",
50 "Infinity",
51 "QNaN",
52 "SNaN",
53};
54
55/* special constants 45/* special constants
56*/ 46*/
57 47
diff --git a/arch/mips/math-emu/ieee754.h b/arch/mips/math-emu/ieee754.h
index c5bdcd25439a..171f177c0f88 100644
--- a/arch/mips/math-emu/ieee754.h
+++ b/arch/mips/math-emu/ieee754.h
@@ -205,7 +205,6 @@ ieee754dp ieee754dp_sqrt(ieee754dp x);
205#define IEEE754_CLASS_INF 0x03 205#define IEEE754_CLASS_INF 0x03
206#define IEEE754_CLASS_SNAN 0x04 206#define IEEE754_CLASS_SNAN 0x04
207#define IEEE754_CLASS_QNAN 0x05 207#define IEEE754_CLASS_QNAN 0x05
208extern const char *const ieee754_cname[];
209 208
210/* exception numbers */ 209/* exception numbers */
211#define IEEE754_INEXACT 0x01 210#define IEEE754_INEXACT 0x01