From de690a643895aca8daf0499a63194019ca0e8316 Mon Sep 17 00:00:00 2001 From: "Kazushi (Jam) Marukawa" Date: Fri, 1 Jul 2022 19:24:33 +0900 Subject: [PATCH] [VE][NFC] Correct comment --- llvm/lib/Target/VE/VEISelLowering.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Target/VE/VEISelLowering.cpp b/llvm/lib/Target/VE/VEISelLowering.cpp index 63d4897..2eea650 100644 --- a/llvm/lib/Target/VE/VEISelLowering.cpp +++ b/llvm/lib/Target/VE/VEISelLowering.cpp @@ -1583,9 +1583,9 @@ SDValue VETargetLowering::lowerVAARG(SDValue Op, SelectionDAG &DAG) const { SDValue NextPtr; if (VT == MVT::f128) { - // VE f128 values must be stored with 16 bytes alignment. We doesn't + // VE f128 values must be stored with 16 bytes alignment. We don't // know the actual alignment of VAList, so we take alignment of it - // dyanmically. + // dynamically. int Align = 16; VAList = DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(Align - 1, DL, PtrVT)); -- 2.7.4