We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b11a2e commit 765049dCopy full SHA for 765049d
1 file changed
plugins/HardwareBreakpoints/HardwareBreakpoints.cpp
@@ -165,7 +165,8 @@ void HardwareBreakpoints::setupBreakpoints() {
165
thread->getState(&state);
166
167
for (int i = 0; i < RegisterCount; ++i) {
168
- if (edb::v1::eval_expression(addresses_[i]->text(), &addr[i])) {
+ const BreakpointState bp_state = breakpoint_state(&state, i);
169
+ if (ok[i] || bp_state.enabled) {
170
set_breakpoint_state(
171
&state,
172
i,
0 commit comments