-
Notifications
You must be signed in to change notification settings - Fork 588
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the condition for watchpoint matching on arm64
The language from the ARM manual previously quoted in the comment in fact only pertains to Memory Copy and Memory Set instructions. According to the section describing the behavior for "other instructions", the recorded address can be > the watchpoint address. Therefore, remove the check that the watchpoint address >= the recorded address, and update the comment for accuracy. Fixes #3736
- Loading branch information
1 parent
42ae00b
commit 4ed1b81
Showing
3 changed files
with
11 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ def test(): | |
expect_gdb(f'watchpoint {wp}') | ||
send_gdb(f'delete {wp}') | ||
|
||
test() | ||
test() | ||
test() | ||
ok() |