summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm-c
diff options
context:
space:
mode:
authorAmaury Sechet <deadalnix@gmail.com>2016-05-01 01:42:34 +0000
committerAmaury Sechet <deadalnix@gmail.com>2016-05-01 01:42:34 +0000
commit81243a73ef83dd6a90070683ec34ba096df22786 (patch)
treef2664f02e52b004098b5946143af2d7639c95d0b /llvm/include/llvm-c
parent99f6b620cccd541a8a3eec0af804f3e289871004 (diff)
downloadbcm5719-llvm-81243a73ef83dd6a90070683ec34ba096df22786.tar.gz
bcm5719-llvm-81243a73ef83dd6a90070683ec34ba096df22786.zip
Capitalize align argument in the C API as per convention. NFC
llvm-svn: 268175
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r--llvm/include/llvm-c/Core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h
index 399e12d7f90..d443d897c97 100644
--- a/llvm/include/llvm-c/Core.h
+++ b/llvm/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.
OpenPOWER on IntegriCloud