mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Mark zero-argument functions explicitly in C headers.
Pacifies GCC's -Wstrict-prototypes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193249 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0082717cb5
commit
f39fe46062
@ -408,7 +408,7 @@ void LLVMInitializeCore(LLVMPassRegistryRef R);
|
||||
/** Deallocate and destroy all ManagedStatic variables.
|
||||
@see llvm::llvm_shutdown
|
||||
@see ManagedStatic */
|
||||
void LLVMShutdown();
|
||||
void LLVMShutdown(void);
|
||||
|
||||
|
||||
/*===-- Error handling ----------------------------------------------------===*/
|
||||
@ -2748,16 +2748,16 @@ void LLVMDisposePassManager(LLVMPassManagerRef PM);
|
||||
initialization succeeded. Must be executed in isolation from all
|
||||
other LLVM api calls.
|
||||
@see llvm::llvm_start_multithreaded */
|
||||
LLVMBool LLVMStartMultithreaded();
|
||||
LLVMBool LLVMStartMultithreaded(void);
|
||||
|
||||
/** Deallocate structures necessary to make LLVM safe for multithreading.
|
||||
Must be executed in isolation from all other LLVM api calls.
|
||||
@see llvm::llvm_stop_multithreaded */
|
||||
void LLVMStopMultithreaded();
|
||||
void LLVMStopMultithreaded(void);
|
||||
|
||||
/** Check whether LLVM is executing in thread-safe mode or not.
|
||||
@see llvm::llvm_is_multithreaded */
|
||||
LLVMBool LLVMIsMultithreaded();
|
||||
LLVMBool LLVMIsMultithreaded(void);
|
||||
|
||||
/**
|
||||
* @}
|
||||
|
Loading…
Reference in New Issue
Block a user