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(): |
30
30
raise(ExceptionCode::IllegalInstruction, mode(), $encoding);
31
31
}
32
32
33
- XReg retrun_addr = $pc + 2;
33
+ XReg return_addr = $pc + 2;
34
34
35
35
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:
29
29
- when : xd == x1
30
30
to : jal imm
31
31
operation() : |
32
- XReg retrun_addr = $pc + 4;
32
+ XReg return_addr = $pc + 4;
33
33
34
34
jump_halfword($pc + $signed(imm));
35
- X[xd] = retrun_addr ;
35
+ X[xd] = return_addr ;
36
36
37
37
# SPDX-SnippetBegin
38
38
# 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:
27
27
vs : always
28
28
vu : always
29
29
operation() : |
30
- XReg retrun_addr = $pc + 6;
30
+ XReg return_addr = $pc + 6;
31
31
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