Skip to content

Commit

Permalink
Step.cpp: fix 32bit/64bit issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JimKnowler committed Mar 27, 2022
1 parent e35f120 commit c4c75ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtestverilog/lib/Step.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace gtestverilog {

PortValue& value = ports[&portDesc];

portMask |= (1 << portId);
portMask |= (uint64_t(1) << portId);

return value;
}
Expand Down

0 comments on commit c4c75ff

Please sign in to comment.