diff options
| author | Amaury Sechet <deadalnix@gmail.com> | 2016-04-04 22:00:25 +0000 | 
|---|---|---|
| committer | Amaury Sechet <deadalnix@gmail.com> | 2016-04-04 22:00:25 +0000 | 
| commit | 56f056c01f69b536b02a3b0dd4866efa618fb504 (patch) | |
| tree | 38b61bbe174df5e171dec0611f7257a9c2a91280 | |
| parent | 35c6903f220d4065aa0051df9785a9b2b6f94bf2 (diff) | |
| download | bcm5719-llvm-56f056c01f69b536b02a3b0dd4866efa618fb504.tar.gz bcm5719-llvm-56f056c01f69b536b02a3b0dd4866efa618fb504.zip  | |
Style update in Core.h/Core.cpp . NFC
llvm-svn: 265353
| -rw-r--r-- | llvm/include/llvm-c/Core.h | 4 | ||||
| -rw-r--r-- | llvm/lib/IR/Core.cpp | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 1207f819c77..20c5df3e787 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/include/llvm-c/Core.h @@ -430,9 +430,9 @@ char *LLVMGetDiagInfoDescription(LLVMDiagnosticInfoRef DI);   */  LLVMDiagnosticSeverity LLVMGetDiagInfoSeverity(LLVMDiagnosticInfoRef DI); -unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name, +unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char *Name,                                    unsigned SLen); -unsigned LLVMGetMDKindID(const char* Name, unsigned SLen); +unsigned LLVMGetMDKindID(const char *Name, unsigned SLen);  /**   * @} diff --git a/llvm/lib/IR/Core.cpp b/llvm/lib/IR/Core.cpp index b90ec2d7268..b04ff83140d 100644 --- a/llvm/lib/IR/Core.cpp +++ b/llvm/lib/IR/Core.cpp @@ -100,12 +100,12 @@ void LLVMContextDispose(LLVMContextRef C) {    delete unwrap(C);  } -unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name, +unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char *Name,                                    unsigned SLen) {    return unwrap(C)->getMDKindID(StringRef(Name, SLen));  } -unsigned LLVMGetMDKindID(const char* Name, unsigned SLen) { +unsigned LLVMGetMDKindID(const char *Name, unsigned SLen) {    return LLVMGetMDKindIDInContext(LLVMGetGlobalContext(), Name, SLen);  }  | 

