Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/aarch64/include Oops. revert my previous commit. AA...



details:   https://anonhg.NetBSD.org/src/rev/21f002746736
branches:  trunk
changeset: 938413:21f002746736
user:      ryo <ryo%NetBSD.org@localhost>
date:      Mon Sep 07 18:29:48 2020 +0000

description:
Oops. revert my previous commit. AArch64 instructions are always LE.

diffstat:

 sys/arch/aarch64/include/ptrace.h |  6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diffs (21 lines):

diff -r 16135f81fdff -r 21f002746736 sys/arch/aarch64/include/ptrace.h
--- a/sys/arch/aarch64/include/ptrace.h Mon Sep 07 18:06:13 2020 +0000
+++ b/sys/arch/aarch64/include/ptrace.h Mon Sep 07 18:29:48 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ptrace.h,v 1.11 2020/09/06 17:43:31 ryo Exp $ */
+/* $NetBSD: ptrace.h,v 1.12 2020/09/07 18:29:48 ryo Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -62,11 +62,7 @@
 #define PTRACE_REG_SP(r)       (r)->r_sp
 #define PTRACE_REG_INTRV(r)    (r)->r_reg[0]
 
-#ifdef __AARCH64EB__
-#define PTRACE_BREAKPOINT      ((const uint8_t[]) { 0xd4, 0x20, 0x01, 0xa0 })
-#else
 #define PTRACE_BREAKPOINT      ((const uint8_t[]) { 0xa0, 0x01, 0x20, 0xd4 })
-#endif
 #define PTRACE_BREAKPOINT_ASM  __asm __volatile("brk #13" ::: "memory")
 #define PTRACE_BREAKPOINT_SIZE 4
 



Home | Main Index | Thread Index | Old Index