From: Simon Marchi Date: Mon, 20 Feb 2023 16:52:40 +0000 (-0500) Subject: gdb: revert one erroneous bool-ification change X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=19005d19891221e878f3b2e91134a439ad78235f;p=binutils-gdb.git 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 --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); }