[llvm] r268175 - Capitalize align argument in the C API as per convention. NFC
Amaury Sechet via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 30 18:42:35 PDT 2016
Author: deadalnix
Date: Sat Apr 30 20:42:34 2016
New Revision: 268175
URL: http://llvm.org/viewvc/llvm-project?rev=268175&view=rev
Log:
Capitalize align argument in the C API as per convention. NFC
Modified:
llvm/trunk/include/llvm-c/Core.h
Modified: llvm/trunk/include/llvm-c/Core.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/Core.h?rev=268175&r1=268174&r2=268175&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/Core.h (original)
+++ llvm/trunk/include/llvm-c/Core.h Sat Apr 30 20:42:34 2016
@@ -2082,7 +2082,7 @@ LLVMAttribute LLVMGetAttribute(LLVMValue
* @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
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.
More information about the llvm-commits
mailing list