From: Amaury Sechet Date: Sun, 1 May 2016 01:42:34 +0000 (+0000) Subject: Capitalize align argument in the C API as per convention. NFC X-Git-Tag: android-x86-7.1-r4~34233 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3f89ecd798590dee470431ed0940103bf89d1596;p=android-x86%2Fexternal-llvm.git Capitalize align argument in the C API as per convention. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268175 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index 399e12d7f90..d443d897c97 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -2082,7 +2082,7 @@ LLVMAttribute LLVMGetAttribute(LLVMValueRef Arg); * @see llvm::Argument::addAttr() * @see llvm::AttrBuilder::addAlignmentAttr() */ -void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align); +void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned Align); /** * @} @@ -2529,7 +2529,7 @@ void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index, LLVMAttribute); void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index, LLVMAttribute); void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index, - unsigned align); + unsigned Align); /** * Obtain the pointer to the function invoked by this instruction.