Skip to content

Commit a43a298

Browse files
committed
[RISCV][NFC] Fix typo: ILP64E => LP64E
1 parent e13cbac commit a43a298

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/RISCV/RISCVCallingConv.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ ArrayRef<MCPhysReg> RISCV::getArgGPRs(const RISCVABI::ABI ABI) {
129129
static const MCPhysReg ArgIGPRs[] = {RISCV::X10, RISCV::X11, RISCV::X12,
130130
RISCV::X13, RISCV::X14, RISCV::X15,
131131
RISCV::X16, RISCV::X17};
132-
// The GPRs used for passing arguments in the ILP32E/ILP64E ABI.
132+
// The GPRs used for passing arguments in the ILP32E/LP64E ABI.
133133
static const MCPhysReg ArgEGPRs[] = {RISCV::X10, RISCV::X11, RISCV::X12,
134134
RISCV::X13, RISCV::X14, RISCV::X15};
135135

@@ -147,7 +147,7 @@ static ArrayRef<MCPhysReg> getFastCCArgGPRs(const RISCVABI::ABI ABI) {
147147
RISCV::X10, RISCV::X11, RISCV::X12, RISCV::X13, RISCV::X14, RISCV::X15,
148148
RISCV::X16, RISCV::X17, RISCV::X28, RISCV::X29, RISCV::X30, RISCV::X31};
149149

150-
// The GPRs used for passing arguments in the FastCC when using ILP32E/ILP64E.
150+
// The GPRs used for passing arguments in the FastCC when using ILP32E/LP64E.
151151
static const MCPhysReg FastCCEGPRs[] = {RISCV::X10, RISCV::X11, RISCV::X12,
152152
RISCV::X13, RISCV::X14, RISCV::X15};
153153

0 commit comments

Comments
 (0)