Capitalize align argument in the C API as per convention. NFC

llvm-svn: 268175
This commit is contained in:
Amaury Sechet 2016-05-01 01:42:34 +00:00
parent 99f6b620cc
commit 81243a73ef
1 changed files with 2 additions and 2 deletions

View File

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