Revision 7e5a8bb22368b3555644cb2debd3df24592f3a21 authored by Richard Henderson on 22 August 2023, 14:13:44 UTC, committed by Richard Henderson on 22 August 2023, 14:13:44 UTC
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
1 parent 0d52116
Raw File
target.h
/*
 * Intel general target stuff that's common to all i386 details
 *
 * Copyright (c) 2022 M. Warner Losh <imp@bsdimp.com>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef TARGET_H
#define TARGET_H

/*
 * arm EABI 'lumps' the registers for 64-bit args.
 */
static inline bool regpairs_aligned(void *cpu_env)
{
    return true;
}

#endif /* TARGET_H */

back to top