public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] sim: bpf: use CURRENT_TARGET_BYTE_ORDER
@ 2021-06-06 17:32 Mike Frysinger
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger @ 2021-06-06 17:32 UTC (permalink / raw)
  To: gdb-patches

Code should be going through this macro rather than accessing the
underlying value directly.
---
 sim/bpf/bpf.c    | 4 ++--
 sim/bpf/mloop.in | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sim/bpf/bpf.c b/sim/bpf/bpf.c
index c626781adbf8..f9cdb824d1a9 100644
--- a/sim/bpf/bpf.c
+++ b/sim/bpf/bpf.c
@@ -222,7 +222,7 @@ bpfbf_prepare_run (SIM_CPU *cpu)
 void
 bpf_engine_run_full (SIM_CPU *cpu)
 {
-  if (current_target_byte_order == BFD_ENDIAN_LITTLE)
+  if (CURRENT_TARGET_BYTE_ORDER == BFD_ENDIAN_LITTLE)
     {
       if (!bpf_idesc_le)
         {
@@ -253,7 +253,7 @@ bpf_engine_run_full (SIM_CPU *cpu)
 void
 bpf_engine_run_fast (SIM_CPU *cpu)
 {
-  if (current_target_byte_order == BFD_ENDIAN_LITTLE)
+  if (CURRENT_TARGET_BYTE_ORDER == BFD_ENDIAN_LITTLE)
     {
       if (!bpf_idesc_le)
         {
diff --git a/sim/bpf/mloop.in b/sim/bpf/mloop.in
index e666835ed1b8..91f0c445eed0 100644
--- a/sim/bpf/mloop.in
+++ b/sim/bpf/mloop.in
@@ -121,7 +121,7 @@ cat <<EOF
 
   UDI insn = GETIMEMUDI (current_cpu, vpc);
 
-  if (current_target_byte_order == BFD_ENDIAN_BIG)
+  if (CURRENT_TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
     {
       /* eBPF instructions are little-endian, but GETIMEMUDI reads according
          to target byte order. Swap to little-endian. */
-- 
2.31.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-06-06 17:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-06 17:32 [PATCH] sim: bpf: use CURRENT_TARGET_BYTE_ORDER Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).