From: Jim Grosbach Date: Mon, 11 Aug 2014 22:42:28 +0000 (+0000) Subject: AArch64: Tidy up a few comments. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3392b33ccdec020673d9748640c48ec5a46b23f9;p=oota-llvm.git AArch64: Tidy up a few comments. Have the comments match the actual parameter names. Found via clang-tidy. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215401 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AArch64/AArch64ISelLowering.cpp b/lib/Target/AArch64/AArch64ISelLowering.cpp index f236e6f6803..53ac50ec802 100644 --- a/lib/Target/AArch64/AArch64ISelLowering.cpp +++ b/lib/Target/AArch64/AArch64ISelLowering.cpp @@ -2355,8 +2355,8 @@ AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI, DAG.getConstant(Outs[i].Flags.getByValSize(), MVT::i64); SDValue Cpy = DAG.getMemcpy( Chain, DL, DstAddr, Arg, SizeNode, Outs[i].Flags.getByValAlign(), - /*isVolatile = */ false, - /*alwaysInline = */ false, DstInfo, MachinePointerInfo()); + /*isVol = */ false, + /*AlwaysInline = */ false, DstInfo, MachinePointerInfo()); MemOpChains.push_back(Cpy); } else {