File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
arch_overlay/qc_iu/inst/Xqci Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ operation(): |
3030 raise(ExceptionCode::IllegalInstruction, mode(), $encoding);
3131 }
3232
33- XReg retrun_addr = $pc + 2;
33+ XReg return_addr = $pc + 2;
3434
3535 jump_halfword($pc + $signed(imm));
36- X[1] = retrun_addr ;
36+ X[1] = return_addr ;
Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ pseudoinstructions:
2929 - when : xd == x1
3030 to : jal imm
3131operation() : |
32- XReg retrun_addr = $pc + 4;
32+ XReg return_addr = $pc + 4;
3333
3434 jump_halfword($pc + $signed(imm));
35- X[xd] = retrun_addr ;
35+ X[xd] = return_addr ;
3636
3737# SPDX-SnippetBegin
3838# SPDX-FileCopyrightText: 2017-2025 Contributors to the RISCV Sail Model <https://github.com/riscv/sail-riscv/blob/master/LICENCE>
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ access:
2727 vs : always
2828 vu : always
2929operation() : |
30- XReg retrun_addr = $pc + 6;
30+ XReg return_addr = $pc + 6;
3131 jump_halfword($pc + imm);
32- X[1] = retrun_addr ;
32+ X[1] = return_addr ;
You can’t perform that action at this time.
0 commit comments