-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic Blocks refactoring #112
base: enhance/52
Are you sure you want to change the base?
Basic Blocks refactoring #112
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @akhilguruprasad22 , I've left comments for your review. I'm a little confused as to how the changes you've made here relate to the discussions that we've been having in #52. Please provide additional context.
else: | ||
assert bb_curr is not None | ||
bb_curr.instructions.append(insn) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you provide context for this change? What is it addressing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change was made in accordance to: mandiant/capa#1326 (comment)
else: | ||
bb.succs.append(bb_next) | ||
bb_next.preds.append(bb) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you provide context for this change? What is it addressing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change was made in accordance to:
mandiant/capa#1326 (comment)
Co-authored-by: Mike Hunhoff <[email protected]>
post review refactoring