[cfe-commits] r130417 - /cfe/trunk/lib/CodeGen/TargetInfo.cpp
Chris Lattner
clattner at apple.com
Thu Apr 28 11:26:08 PDT 2011
On Apr 28, 2011, at 11:16 AM, Stuart Hastings wrote:
> Author: stuart
> Date: Thu Apr 28 13:16:06 2011
> New Revision: 130417
>
> URL: http://llvm.org/viewvc/llvm-project?rev=130417&view=rev
> Log:
> Replace SmallVector with an array, as suggested by Frits van Bommel. rdar://problem/7662569
Thanks Stuart,
> + const llvm::Type* LLVMField[1] = { llvm::ArrayType::get(ElemTy, SizeRegs) };
You don't actually need an array here (you can pass in a scalar instead).
> + const llvm::Type* STy = llvm::StructType::get(getVMContext(), LLVMField,
> + true);
> + return ABIArgInfo::getDirect(STy);
Please use "Type *STy" instead of "Type* STy".
-Chris
More information about the cfe-commits
mailing list