1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

AArch64: Tidy up a few comments.

Have the comments match the actual parameter names. Found via clang-tidy.

llvm-svn: 215401
This commit is contained in:
Jim Grosbach 2014-08-11 22:42:28 +00:00
parent 5a64cc5b28
commit 6d4234003b

View File

@ -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 {