mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-02 00:16:25 +00:00
Style update in Core.h/Core.cpp . NFC
llvm-svn: 265353
This commit is contained in:
parent
d68f9d3b57
commit
5671df73ff
@ -430,9 +430,9 @@ char *LLVMGetDiagInfoDescription(LLVMDiagnosticInfoRef DI);
|
|||||||
*/
|
*/
|
||||||
LLVMDiagnosticSeverity LLVMGetDiagInfoSeverity(LLVMDiagnosticInfoRef DI);
|
LLVMDiagnosticSeverity LLVMGetDiagInfoSeverity(LLVMDiagnosticInfoRef DI);
|
||||||
|
|
||||||
unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name,
|
unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char *Name,
|
||||||
unsigned SLen);
|
unsigned SLen);
|
||||||
unsigned LLVMGetMDKindID(const char* Name, unsigned SLen);
|
unsigned LLVMGetMDKindID(const char *Name, unsigned SLen);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @}
|
* @}
|
||||||
|
@ -100,12 +100,12 @@ void LLVMContextDispose(LLVMContextRef C) {
|
|||||||
delete unwrap(C);
|
delete unwrap(C);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name,
|
unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char *Name,
|
||||||
unsigned SLen) {
|
unsigned SLen) {
|
||||||
return unwrap(C)->getMDKindID(StringRef(Name, 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);
|
return LLVMGetMDKindIDInContext(LLVMGetGlobalContext(), Name, SLen);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user