Skip to content

Commit

Permalink
GP-4072: Ignore artificial blocks when mapping modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
nsadeveloper789 committed Mar 7, 2024
1 parent 14177c5 commit 9f5bfd4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static boolean includeBlock(Program program, MemoryBlock block) {
// TODO: Determine how to handle these.
return false;
}
if (block.isExternalBlock()) {
if (block.isArtificial()) {
return false;
}
return true;
Expand Down

0 comments on commit 9f5bfd4

Please sign in to comment.