Warner Losh | 647afdf | 2022-01-31 16:01:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Intel general target stuff that's common to all x86_64 details |
| 3 | * |
| 4 | * Copyright (c) 2022 M. Warner Losh <imp@bsdimp.com> |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 7 | */ |
| 8 | |
| 9 | #ifndef TARGET_H |
| 10 | #define TARGET_H |
| 11 | |
| 12 | /* |
| 13 | * x86 doesn't 'lump' the registers for 64-bit args, all args are 64 bits. |
| 14 | */ |
| 15 | static inline bool regpairs_aligned(void *cpu_env) |
| 16 | { |
| 17 | return false; |
| 18 | } |
| 19 | |
Markus Armbruster | ea9cea9 | 2022-05-06 15:49:11 +0200 | [diff] [blame] | 20 | #endif /* TARGET_H */ |
Warner Losh | 647afdf | 2022-01-31 16:01:05 -0700 | [diff] [blame] | 21 | |