unaligned.h 390 B

123456789101112131415
  1. #ifndef __H8300_UNALIGNED_H
  2. #define __H8300_UNALIGNED_H
  3. /* Use memmove here, so gcc does not insert a __builtin_memcpy. */
  4. #define get_unaligned(ptr) \
  5. ({ __typeof__(*(ptr)) __tmp; memmove(&__tmp, (ptr), sizeof(*(ptr))); __tmp; })
  6. #define put_unaligned(val, ptr) \
  7. ({ __typeof__(*(ptr)) __tmp = (val); \
  8. memmove((ptr), &__tmp, sizeof(*(ptr))); \
  9. (void)0; })
  10. #endif