Skip to content

Commit d1bad99

Browse files
committed
fixup! rename the operand to $addr.
1 parent 95c94cb commit d1bad99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/Target/RISCV/RISCVInstrInfoXCV.td

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ class CVLoad_rr_inc<bits<7> funct7, bits<3> funct3, string opcodestr>
287287

288288
class CVLoad_rr<bits<7> funct7, bits<3> funct3, string opcodestr>
289289
: RVInstR<funct7, funct3, OPC_CUSTOM_1, (outs GPR:$rd),
290-
(ins (CVrr $rs2, $rs1):$cvrr),
291-
opcodestr, "$rd, $cvrr">;
290+
(ins (CVrr $rs2, $rs1):$addr),
291+
opcodestr, "$rd, $addr">;
292292
} // hasSideEffects = 0, mayLoad = 1, mayStore = 0
293293

294294
let hasSideEffects = 0, mayLoad = 0, mayStore = 1 in {
@@ -317,8 +317,8 @@ class CVStore_rr_inc<bits<3> funct3, bits<7> funct7, string opcodestr>
317317

318318

319319
class CVStore_rr<bits<3> funct3, bits<7> funct7, string opcodestr>
320-
: RVInst<(outs), (ins GPR:$rs2, (CVrr $rs3, $rs1):$cvrr), opcodestr,
321-
"$rs2, $cvrr", [], InstFormatOther> {
320+
: RVInst<(outs), (ins GPR:$rs2, (CVrr $rs3, $rs1):$addr), opcodestr,
321+
"$rs2, $addr", [], InstFormatOther> {
322322
bits<5> rs1;
323323
bits<5> rs2;
324324
bits<5> rs3;

0 commit comments

Comments
 (0)