2
0

target.h 380 B

1234567891011121314151617181920
  1. /*
  2. * Riscv64 general target stuff that's common to all aarch details
  3. *
  4. * Copyright (c) 2022 M. Warner Losh <imp@bsdimp.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0-or-later
  7. */
  8. #ifndef TARGET_H
  9. #define TARGET_H
  10. /*
  11. * riscv64 ABI does not 'lump' the registers for 64-bit args.
  12. */
  13. static inline bool regpairs_aligned(void *cpu_env)
  14. {
  15. return false;
  16. }
  17. #endif /* TARGET_H */