blob: 9ae2b8147dc36c74c96b87d53370eab7a83f4982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* Copyright (c) 2015-2023 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
static struct user_regs_struct hppa_regs;
#define ARCH_REGS_FOR_GETREGSET hppa_regs
#define ARCH_PC_REG hppa_regs.iaoq[0]
#define ARCH_SP_REG hppa_regs.gr[30]
|