repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git]
/
arch
/
m32r
/
lib
/
libgcc.h
blob
4854690d944a7e6ae33395795a65e883a1f8715b
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef __ASM_LIBGCC_H
3
#define __ASM_LIBGCC_H
4
5
#include <asm/byteorder.h>
6
7
#ifdef __BIG_ENDIAN
8
struct
DWstruct
{
9
int
high
,
low
;
10
};
11
#elif defined(__LITTLE_ENDIAN)
12
struct
DWstruct
{
13
int
low
,
high
;
14
};
15
#else
16
#error I feel sick.
17
#endif
18
19
typedef
union
{
20
struct
DWstruct s
;
21
long long
ll
;
22
}
DWunion
;
23
24
#endif
/* __ASM_LIBGCC_H */