diff options
author | Amaury Sechet <deadalnix@gmail.com> | 2016-04-23 00:12:45 +0000 |
---|---|---|
committer | Amaury Sechet <deadalnix@gmail.com> | 2016-04-23 00:12:45 +0000 |
commit | b130f43bfbc5d0468ac8b5c2535244ac7cc9c4b2 (patch) | |
tree | 68737c54df33613a23b26580eba0fbafd63e1db9 /llvm/include/llvm-c/Core.h | |
parent | 3884f1a5bddf52fca26135600e4282bbcef7d076 (diff) | |
download | bcm5719-llvm-b130f43bfbc5d0468ac8b5c2535244ac7cc9c4b2.tar.gz bcm5719-llvm-b130f43bfbc5d0468ac8b5c2535244ac7cc9c4b2.zip |
Style fix in Core.h / Core.cpp. NFC
llvm-svn: 267257
Diffstat (limited to 'llvm/include/llvm-c/Core.h')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 0c3d76d6f9b..399e12d7f90 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/include/llvm-c/Core.h @@ -636,7 +636,7 @@ LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name); * * @see llvm::Module::getNamedMetadata() */ -unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name); +unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char *Name); /** * Obtain the named metadata operands for a module. @@ -649,7 +649,8 @@ unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name); * @see llvm::Module::getNamedMetadata() * @see llvm::MDNode::getOperand() */ -void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest); +void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char *Name, + LLVMValueRef *Dest); /** * Add an operand to named metadata. @@ -657,7 +658,7 @@ void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRe * @see llvm::Module::getNamedMetadata() * @see llvm::MDNode::addOperand() */ -void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name, +void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char *Name, LLVMValueRef Val); /** |