Skip to content

Commit

Permalink
Merge pull request #1860 from XYenChi/master
Browse files Browse the repository at this point in the history
Fix formatting of assembly code within comments
  • Loading branch information
aswaterman authored Nov 20, 2024
2 parents 2c67071 + 5cc162c commit eb0a3e2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion riscv/insns/vmulhu_vv.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vmulhu vd ,vs2, vs1
// vmulhu vd, vs2, vs1
VI_VV_ULOOP
({
vd = ((uint128_t)vs2 * vs1) >> sew;
Expand Down
2 changes: 1 addition & 1 deletion riscv/insns/vredand_vs.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vredand.vs vd, vs2 ,vs1
// vredand.vs vd, vs2, vs1
VI_VV_LOOP_REDUCTION
({
vd_0_res &= vs2;
Expand Down
2 changes: 1 addition & 1 deletion riscv/insns/vredmaxu_vs.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vredmaxu.vs vd, vs2 ,vs1
// vredmaxu.vs vd, vs2, vs1
VI_VV_ULOOP_REDUCTION
({
vd_0_res = (vd_0_res >= vs2) ? vd_0_res : vs2;
Expand Down
2 changes: 1 addition & 1 deletion riscv/insns/vredmin_vs.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vredmin.vs vd, vs2 ,vs1
// vredmin.vs vd, vs2, vs1
VI_VV_LOOP_REDUCTION
({
vd_0_res = (vd_0_res <= vs2) ? vd_0_res : vs2;
Expand Down
2 changes: 1 addition & 1 deletion riscv/insns/vredminu_vs.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vredminu.vs vd, vs2 ,vs1
// vredminu.vs vd, vs2, vs1
VI_VV_ULOOP_REDUCTION
({
vd_0_res = (vd_0_res <= vs2) ? vd_0_res : vs2;
Expand Down
2 changes: 1 addition & 1 deletion riscv/insns/vredor_vs.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vredor.vs vd, vs2 ,vs1
// vredor.vs vd, vs2, vs1
VI_VV_LOOP_REDUCTION
({
vd_0_res |= vs2;
Expand Down
2 changes: 1 addition & 1 deletion riscv/insns/vredsum_vs.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vredsum.vs vd, vs2 ,vs1
// vredsum.vs vd, vs2, vs1
VI_VV_LOOP_REDUCTION
({
vd_0_res += vs2;
Expand Down
2 changes: 1 addition & 1 deletion riscv/insns/vredxor_vs.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vredxor.vs vd, vs2 ,vs1
// vredxor.vs vd, vs2, vs1
VI_VV_LOOP_REDUCTION
({
vd_0_res ^= vs2;
Expand Down

0 comments on commit eb0a3e2

Please sign in to comment.