Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / arch / m32r / lib / libgcc.h
blob267aa435bc35ddcfa90c51e1c5192379c4ec0778
1 #ifndef __ASM_LIBGCC_H
2 #define __ASM_LIBGCC_H
4 #include <asm/byteorder.h>
6 #ifdef __BIG_ENDIAN
7 struct DWstruct {
8 int high, low;
9 };
10 #elif defined(__LITTLE_ENDIAN)
11 struct DWstruct {
12 int low, high;
14 #else
15 #error I feel sick.
16 #endif
18 typedef union {
19 struct DWstruct s;
20 long long ll;
21 } DWunion;
23 #endif /* __ASM_LIBGCC_H */