Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-h8300 / unaligned.h
blobffb67f472070c995d362d7cc6ac2698276c8becd
1 #ifndef __H8300_UNALIGNED_H
2 #define __H8300_UNALIGNED_H
5 /* Use memmove here, so gcc does not insert a __builtin_memcpy. */
7 #define get_unaligned(ptr) \
8 ({ __typeof__(*(ptr)) __tmp; memmove(&__tmp, (ptr), sizeof(*(ptr))); __tmp; })
10 #define put_unaligned(val, ptr) \
11 ({ __typeof__(*(ptr)) __tmp = (val); \
12 memmove((ptr), &__tmp, sizeof(*(ptr))); \
13 (void)0; })
15 #endif