[pushed] gdb: revert one erroneous bool-ification change

Message ID 20230220170134.15548-1-simon.marchi@efficios.com
State New
Headers
Series [pushed] gdb: revert one erroneous bool-ification change |

Commit Message

Simon Marchi Feb. 20, 2023, 5:01 p.m. UTC
  Commit 42c13555ff88 ("Change value::m_stack to bool") erroneously
changed a `0` to `false` in this call to read_value_memory.  This
parameter is `LONGEST bit_offset`, it should stay `0`.

Change-Id: I128df6834cf8055ec6a7051e237e379978d3d651
---
 gdb/value.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gdb/value.c b/gdb/value.c
index e52d1d77b48f..d2c2a2d7859b 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -3749,7 +3749,7 @@  value::fetch_lazy_memory ()
   gdb_assert (len >= 0);
 
   if (len > 0)
-    read_value_memory (this, false, stack (), addr,
+    read_value_memory (this, 0, stack (), addr,
 		       contents_all_raw ().data (), len);
 }