Skip to content

Commit 36c07e2

Browse files
committed
fix(data): many instruction assembly have unneeded space
The "assembly" attribute of instruction YAML are simply strings representing the syntactic list of operands, or an empty string if the instruction has no operands. Fix instructions that have extra, unneeded spaces. Signed-off-by: Paul A. Clarke <[email protected]>
1 parent dd5b8ba commit 36c07e2

File tree

141 files changed

+141
-141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+141
-141
lines changed

spec/custom/isa/qc_iu/inst/Xqci/qc.addsat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ encoding:
2727
- name: rd
2828
location: 11-7
2929
not: 0
30-
assembly: " xd, xs1, xs2"
30+
assembly: xd, xs1, xs2
3131
access:
3232
s: always
3333
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.addusat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ encoding:
2727
- name: rd
2828
location: 11-7
2929
not: 0
30-
assembly: " xd, xs1, xs2"
30+
assembly: xd, xs1, xs2
3131
access:
3232
s: always
3333
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.beqi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ encoding:
2828
- name: rs1
2929
location: 19-15
3030
not: 0
31-
assembly: " xs1, imm, offset"
31+
assembly: xs1, imm, offset
3232
access:
3333
s: always
3434
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.bgei.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ encoding:
2828
- name: rs1
2929
location: 19-15
3030
not: 0
31-
assembly: " xs1, imm, offset"
31+
assembly: xs1, imm, offset
3232
access:
3333
s: always
3434
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.bgeui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ encoding:
2828
- name: rs1
2929
location: 19-15
3030
not: 0
31-
assembly: " xs1, imm, offset"
31+
assembly: xs1, imm, offset
3232
access:
3333
s: always
3434
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.blti.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ encoding:
2828
- name: rs1
2929
location: 19-15
3030
not: 0
31-
assembly: " xs1, imm, offset"
31+
assembly: xs1, imm, offset
3232
access:
3333
s: always
3434
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.bltui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ encoding:
2828
- name: rs1
2929
location: 19-15
3030
not: 0
31-
assembly: " xs1, imm, offset"
31+
assembly: xs1, imm, offset
3232
access:
3333
s: always
3434
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.bnei.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ encoding:
2828
- name: rs1
2929
location: 19-15
3030
not: 0
31-
assembly: " xs1, imm, offset"
31+
assembly: xs1, imm, offset
3232
access:
3333
s: always
3434
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.brev32.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ encoding:
2424
- name: rd
2525
location: 11-7
2626
not: 0
27-
assembly: " xd, xs1"
27+
assembly: xd, xs1
2828
access:
2929
s: always
3030
u: always

spec/custom/isa/qc_iu/inst/Xqci/qc.c.bexti.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ definedBy:
1515
anyOf:
1616
- Xqci
1717
- Xqcibm
18-
assembly: " xd, shamt"
18+
assembly: xd, shamt
1919
base: 32
2020
encoding:
2121
match: 100100--------01

0 commit comments

Comments
 (0)