Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hust-x86-simulator
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
recolic-hust
hust-x86-simulator
Merge requests
!3
An error occurred while fetching the assigned milestone of the selected merge_request.
Check
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Check
check
into
pa2
Overview
0
Commits
5
Pipelines
1
Changes
8
Merged
Recolic
requested to merge
check
into
pa2
5 years ago
Overview
0
Commits
5
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Viewing commit
ce18d37b
Prev
Next
Show latest version
3 files
+
5
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
ce18d37b
Debugger adapt doc
· ce18d37b
Recolic Keghart
authored
5 years ago
nemu/include/monitor/watchpoint.h
+
1
−
1
Options
@@ -17,7 +17,7 @@ struct WP {
bool
evalulate
()
{
auto
new_value
=
evaluate_expr
(
expr
);
std
::
swap
(
new_value
,
curr_value
);
return
new_value
!=
curr_value
;
return
new_value
!=
curr_value
&&
curr_value
!=
0
;
}
WP
(
std
::
string
e
,
int
id
)
:
expr
(
e
),
id
(
id
)
{
evalulate
();
// initial expr value.
Loading