Skip to content

Commit cc8f39c

Browse files
committed
remove disassembler support
1 parent cd280d7 commit cc8f39c

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

src/cmd/asm/internal/asm/testdata/riscv64.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ start:
177177
RDTIME X5 // f32210c0
178178
RDINSTRET X5 // f32220c0
179179

180-
// 11.1: Zicond Instructions
180+
// 11.1: Integer Conditional Operations (Zicond)
181181
CZEROEQZ X1, X13, X5 // b3d2160e
182182
CZEROEQZ X1, X13 // b3d6160e
183183
CZERONEZ X31, X3, X11 // b3f5f10f

src/cmd/internal/obj/riscv/cpu.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ const (
407407
ACSRRSI
408408
ACSRRCI
409409

410-
// 11.1 "Zicond" Extension for Integer Conditional Operations
410+
// 11.1: Integer Conditional Operations (Zicond)
411411
ACZEROEQZ
412412
ACZERONEZ
413413

src/cmd/internal/obj/riscv/obj.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2007,7 +2007,7 @@ var instructions = [ALAST & obj.AMask]instructionData{
20072007
AFLD & obj.AMask: {enc: iFEncoding},
20082008
AFSD & obj.AMask: {enc: sFEncoding},
20092009

2010-
// 11.1 "Zicond" Extension for Integer Conditional Operations
2010+
// 11.1: "Zicond" Extension for Integer Conditional Operations
20112011
ACZERONEZ & obj.AMask: {enc: rIIIEncoding, ternary: true},
20122012
ACZEROEQZ & obj.AMask: {enc: rIIIEncoding, ternary: true},
20132013

src/cmd/vendor/golang.org/x/arch/riscv64/riscv64asm/tables.go

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)