]> git.proxmox.com Git - mirror_qemu.git/blame - bsd-user/i386/target.h
Merge tag 'pull-target-arm-20230908' of https://git.linaro.org/people/pmaydell/qemu...
[mirror_qemu.git] / bsd-user / i386 / target.h
CommitLineData
647afdf1
WL
1/*
2 * Intel general target stuff that's common to all i386 details
3 *
4 * Copyright (c) 2022 M. Warner Losh <imp@bsdimp.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
52581c71
MA
9#ifndef TARGET_H
10#define TARGET_H
647afdf1
WL
11
12/*
13 * i386 doesn't 'lump' the registers for 64-bit args.
14 */
15static inline bool regpairs_aligned(void *cpu_env)
16{
17 return false;
18}
19
52581c71 20#endif /* TARGET_H */