Skip to content

Commit 589551d

Browse files
committed
fixup! Comments
1 parent 8125f6c commit 589551d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/CodeGen/CGCall.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ static llvm::Value *CreateCoercedLoad(Address Src, llvm::Type *Ty,
13301330

13311331
if (llvm::StructType *SrcSTy = dyn_cast<llvm::StructType>(SrcTy)) {
13321332
if (Ty->isScalableTy() || Ty->isRISCVVectorTupleTy()) {
1333-
// In RISCV VLS calling convention, struct of fixed vector might be
1333+
// In RISC-V VLS calling convention, struct of fixed vector might be
13341334
// lowered using scalable vector, we consider it as a valid load, e.g.
13351335
// struct i32x4 {
13361336
// __attribute__((vector_size(16))) int i;
@@ -1426,7 +1426,7 @@ void CodeGenFunction::CreateCoercedStore(llvm::Value *Src, Address Dst,
14261426
if (llvm::StructType *DstSTy =
14271427
dyn_cast<llvm::StructType>(Dst.getElementType())) {
14281428
if (SrcTy->isScalableTy() || SrcTy->isRISCVVectorTupleTy()) {
1429-
// In RISCV VLS calling convention, struct of fixed vector might be
1429+
// In RISC-V VLS calling convention, struct of fixed vector might be
14301430
// lowered using scalable vector, we consider it as a valid load, e.g.
14311431
// struct i32x4 {
14321432
// __attribute__((vector_size(16))) int i;

0 commit comments

Comments
 (0)