Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SMPStaticAnalyzer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open Source Software
SMPStaticAnalyzer
Commits
62f4fcdc
Commit
62f4fcdc
authored
8 years ago
by
clc5q
Browse files
Options
Downloads
Patches
Plain Diff
Implement HasSegReg() method.
Former-commit-id: 99d63b7a6f1274d935725e3f7a1f70ba3d36479b
parent
edf0b91d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/interfaces/irdb/STARSOp.h
+1
-1
1 addition, 1 deletion
include/interfaces/irdb/STARSOp.h
with
1 addition
and
1 deletion
include/interfaces/irdb/STARSOp.h
+
1
−
1
View file @
62f4fcdc
...
...
@@ -198,7 +198,7 @@ class STARS_IRDB_op_t : public STARS_op_t
}
virtual
bool
IsNearPointer
(
void
)
const
{
return
OpType
==
op_Addr
;
}
virtual
bool
IsFarPointer
(
void
)
const
{
return
false
;
}
virtual
bool
HasSegReg
(
void
)
const
{
assert
(
0
);
}
// Has a segment register
virtual
bool
HasSegReg
(
void
)
const
{
return
(
SegReg
!=
STARS_x86_R_none
);
}
// Has a segment register
// conversion of op to new type
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment