[binutils-gdb] gdb: revert one erroneous bool-ification change
Simon Marchi
simark@sourceware.org
Mon Feb 20 17:00:25 GMT 2023
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=19005d19891221e878f3b2e91134a439ad78235f
commit 19005d19891221e878f3b2e91134a439ad78235f
Author: Simon Marchi <simon.marchi@efficios.com>
Date: Mon Feb 20 11:52:40 2023 -0500
gdb: revert one erroneous bool-ification change
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
Diff:
---
gdb/value.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gdb/value.c b/gdb/value.c
index e52d1d77b48..d2c2a2d7859 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);
}
More information about the Gdb-cvs
mailing list