Skip to content

Commit

Permalink
Reworde comment injected to code
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Kurc <[email protected]>
  • Loading branch information
mkurc-ant committed Oct 11, 2023
1 parent 268e248 commit 4b61934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/riscv-dv/code_fixup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def main():
if l.operands and l.operands[0] == dst:
nops = max(0, max_nops - j)
pad = " " * 18
out_lines.append(pad + "# FIXME: Inserting {} nops not to make VeeR cancel a delayed write #\n".format(nops))
out_lines.append(pad + "# FIXME: Inserting {} NOPs to prevent VeeR from cancelling a delayed write #\n".format(nops))
for k in range(nops):
out_lines.append(pad + "nop\n")
out_lines.append(pad + "# end of nop insertion #\n")
Expand Down

0 comments on commit 4b61934

Please sign in to comment.