(root)/
strace-6.5/
src/
linux/
sparc64/
arch_pt_regs.c
       1  /*
       2   * Copyright (c) 2021 The strace developers.
       3   * All rights reserved.
       4   *
       5   * SPDX-License-Identifier: LGPL-2.1-or-later
       6   */
       7  
       8  #ifdef MPERS_IS_m32
       9  # include "../sparc/arch_pt_regs.c"
      10  #else
      11  
      12  static void
      13  arch_decode_pt_regs(struct tcb *const tcp, const kernel_ulong_t addr)
      14  {
      15  	printaddr(addr);
      16  }
      17  
      18  #endif /* !MPERS_IS_m32 */