diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-19 07:18:08 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-23 09:11:02 -0400 |
commit | fcfe2285e5c53cb33309f946ba1fccd6b5db64df (patch) | |
tree | e17462b60845298f648e440834e43c7dd16a8e08 | |
parent | 66b047dc9cff4c6e89de7b06038155673e7b6120 (diff) |
MIPS: math-emu: Get rid of unuable extended precision support.
No usable functionality and nothig does ever define IEEE854_XP anyway.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/math-emu/ieee754.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/mips/math-emu/ieee754.h b/arch/mips/math-emu/ieee754.h index a1970894094b..049f63fa635e 100644 --- a/arch/mips/math-emu/ieee754.h +++ b/arch/mips/math-emu/ieee754.h | |||
@@ -408,9 +408,6 @@ struct ieee754xctx { | |||
408 | union { | 408 | union { |
409 | union ieee754sp sp; /* single precision */ | 409 | union ieee754sp sp; /* single precision */ |
410 | union ieee754dp dp; /* double precision */ | 410 | union ieee754dp dp; /* double precision */ |
411 | #ifdef IEEE854_XP | ||
412 | ieee754xp xp; /* extended precision */ | ||
413 | #endif | ||
414 | int si; /* standard signed integer (32bits) */ | 411 | int si; /* standard signed integer (32bits) */ |
415 | s64 di; /* extended signed integer (64bits) */ | 412 | s64 di; /* extended signed integer (64bits) */ |
416 | } rv; /* default result format implied by op */ | 413 | } rv; /* default result format implied by op */ |