From d55bd51f311fb00c639da6161584b06cf7cb5e27 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Fri, 24 Apr 2009 17:05:01 +0000 Subject: [PATCH] Adjust a comment to reflect what the code does. Splitting a 64-bit argument between registers and the stack may be required with the APCS ABI, but it isn't tied to using a particular version of the ARM architecture. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69978 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMISelLowering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index a3b7a7d496b..52828e5c56e 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -1103,7 +1103,7 @@ ARMTargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) { VA = ArgLocs[++i]; // skip ahead to next loc if (VA.isMemLoc()) { - // must be APCS and older than V5T to split like this + // must be APCS to split like this unsigned ArgSize = VA.getLocVT().getSizeInBits()/8; int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset());