From 4b619346eed57cd52f43f0d89d2d1ae8d64952e3 Mon Sep 17 00:00:00 2001 From: Maciej Kurc Date: Tue, 10 Oct 2023 16:10:12 +0200 Subject: [PATCH] Reworde comment injected to code Signed-off-by: Maciej Kurc --- tools/riscv-dv/code_fixup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/riscv-dv/code_fixup.py b/tools/riscv-dv/code_fixup.py index e806971e53f..400ca04e742 100644 --- a/tools/riscv-dv/code_fixup.py +++ b/tools/riscv-dv/code_fixup.py @@ -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")