summaryrefslogtreecommitdiff
path: root/arch/nios/lib/math.h
diff options
context:
space:
mode:
authorThomas Chou <thomas@wytron.com.tw>2010-05-28 02:56:50 (GMT)
committerScott McNutt <smcnutt@psyent.com>2010-05-28 14:56:04 (GMT)
commit1117cbf2adac59050af1751af6c6a524afa5c3ef (patch)
treea53832c1bcea3180e6830e8b3f9cb41adeed2d44 /arch/nios/lib/math.h
parent6803336c9f21ba428f5c1b1cf825bbbac0a762e5 (diff)
downloadu-boot-1117cbf2adac59050af1751af6c6a524afa5c3ef.tar.xz
nios: remove nios-32 arch
The nios-32 arch is obsolete and broken. So it is removed. Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Diffstat (limited to 'arch/nios/lib/math.h')
-rw-r--r--arch/nios/lib/math.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/nios/lib/math.h b/arch/nios/lib/math.h
deleted file mode 100644
index f0aed8e..0000000
--- a/arch/nios/lib/math.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#define BITS_PER_UNIT 8
-
-typedef int HItype __attribute__ ((mode (HI)));
-typedef unsigned int UHItype __attribute__ ((mode (HI)));
-
-typedef int SItype __attribute__ ((mode (SI)));
-typedef unsigned int USItype __attribute__ ((mode (SI)));
-
-typedef int word_type __attribute__ ((mode (__word__)));
-
-struct SIstruct {HItype low, high;};
-
-typedef union {
- struct SIstruct s;
- SItype ll;
-} SIunion;