Use (void) instead of () in C code.

llvm-svn: 50620
This commit is contained in:
Gordon Henriksen 2008-05-04 12:55:34 +00:00
parent d9481366e3
commit a735a9c481
3 changed files with 32 additions and 32 deletions

View File

@ -228,20 +228,20 @@ LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
void LLVMRefineAbstractType(LLVMTypeRef AbstractType, LLVMTypeRef ConcreteType); void LLVMRefineAbstractType(LLVMTypeRef AbstractType, LLVMTypeRef ConcreteType);
/* Operations on integer types */ /* Operations on integer types */
LLVMTypeRef LLVMInt1Type(); LLVMTypeRef LLVMInt1Type(void);
LLVMTypeRef LLVMInt8Type(); LLVMTypeRef LLVMInt8Type(void);
LLVMTypeRef LLVMInt16Type(); LLVMTypeRef LLVMInt16Type(void);
LLVMTypeRef LLVMInt32Type(); LLVMTypeRef LLVMInt32Type(void);
LLVMTypeRef LLVMInt64Type(); LLVMTypeRef LLVMInt64Type(void);
LLVMTypeRef LLVMIntType(unsigned NumBits); LLVMTypeRef LLVMIntType(unsigned NumBits);
unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy); unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy);
/* Operations on real types */ /* Operations on real types */
LLVMTypeRef LLVMFloatType(); LLVMTypeRef LLVMFloatType(void);
LLVMTypeRef LLVMDoubleType(); LLVMTypeRef LLVMDoubleType(void);
LLVMTypeRef LLVMX86FP80Type(); LLVMTypeRef LLVMX86FP80Type(void);
LLVMTypeRef LLVMFP128Type(); LLVMTypeRef LLVMFP128Type(void);
LLVMTypeRef LLVMPPCFP128Type(); LLVMTypeRef LLVMPPCFP128Type(void);
/* Operations on function types */ /* Operations on function types */
LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType, LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
@ -270,9 +270,9 @@ unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy);
unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy); unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
/* Operations on other types */ /* Operations on other types */
LLVMTypeRef LLVMVoidType(); LLVMTypeRef LLVMVoidType(void);
LLVMTypeRef LLVMLabelType(); LLVMTypeRef LLVMLabelType(void);
LLVMTypeRef LLVMOpaqueType(); LLVMTypeRef LLVMOpaqueType(void);
/* Operations on type handles */ /* Operations on type handles */
LLVMTypeHandleRef LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy); LLVMTypeHandleRef LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy);
@ -477,7 +477,7 @@ LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index);
* exclusive means of building instructions using the C interface. * exclusive means of building instructions using the C interface.
*/ */
LLVMBuilderRef LLVMCreateBuilder(); LLVMBuilderRef LLVMCreateBuilder(void);
void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block, void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
LLVMValueRef Instr); LLVMValueRef Instr);
void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr); void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr);
@ -637,7 +637,7 @@ void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf);
/** Constructs a new whole-module pass pipeline. This type of pipeline is /** Constructs a new whole-module pass pipeline. This type of pipeline is
suitable for link-time optimization and whole-module transformations. suitable for link-time optimization and whole-module transformations.
See llvm::PassManager::PassManager. */ See llvm::PassManager::PassManager. */
LLVMPassManagerRef LLVMCreatePassManager(); LLVMPassManagerRef LLVMCreatePassManager(void);
/** Constructs a new function-by-function pass pipeline over the module /** Constructs a new function-by-function pass pipeline over the module
provider. It does not take ownership of the module provider. This type of provider. It does not take ownership of the module provider. This type of

View File

@ -63,14 +63,14 @@ extern "C" {
* Returns a printable string. * Returns a printable string.
*/ */
extern const char* extern const char*
lto_get_version(); lto_get_version(void);
/** /**
* Returns the last error string or NULL if last operation was sucessful. * Returns the last error string or NULL if last operation was sucessful.
*/ */
extern const char* extern const char*
lto_get_error_message(); lto_get_error_message(void);
/** /**
@ -160,7 +160,7 @@ lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
* Returns NULL on error (check lto_get_error_message() for details). * Returns NULL on error (check lto_get_error_message() for details).
*/ */
extern lto_code_gen_t extern lto_code_gen_t
lto_codegen_create(); lto_codegen_create(void);
/** /**

View File

@ -97,11 +97,11 @@ void LLVMRefineAbstractType(LLVMTypeRef AbstractType, LLVMTypeRef ConcreteType){
/*--.. Operations on integer types .........................................--*/ /*--.. Operations on integer types .........................................--*/
LLVMTypeRef LLVMInt1Type() { return (LLVMTypeRef) Type::Int1Ty; } LLVMTypeRef LLVMInt1Type(void) { return (LLVMTypeRef) Type::Int1Ty; }
LLVMTypeRef LLVMInt8Type() { return (LLVMTypeRef) Type::Int8Ty; } LLVMTypeRef LLVMInt8Type(void) { return (LLVMTypeRef) Type::Int8Ty; }
LLVMTypeRef LLVMInt16Type() { return (LLVMTypeRef) Type::Int16Ty; } LLVMTypeRef LLVMInt16Type(void) { return (LLVMTypeRef) Type::Int16Ty; }
LLVMTypeRef LLVMInt32Type() { return (LLVMTypeRef) Type::Int32Ty; } LLVMTypeRef LLVMInt32Type(void) { return (LLVMTypeRef) Type::Int32Ty; }
LLVMTypeRef LLVMInt64Type() { return (LLVMTypeRef) Type::Int64Ty; } LLVMTypeRef LLVMInt64Type(void) { return (LLVMTypeRef) Type::Int64Ty; }
LLVMTypeRef LLVMIntType(unsigned NumBits) { LLVMTypeRef LLVMIntType(unsigned NumBits) {
return wrap(IntegerType::get(NumBits)); return wrap(IntegerType::get(NumBits));
@ -113,11 +113,11 @@ unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy) {
/*--.. Operations on real types ............................................--*/ /*--.. Operations on real types ............................................--*/
LLVMTypeRef LLVMFloatType() { return (LLVMTypeRef) Type::FloatTy; } LLVMTypeRef LLVMFloatType(void) { return (LLVMTypeRef) Type::FloatTy; }
LLVMTypeRef LLVMDoubleType() { return (LLVMTypeRef) Type::DoubleTy; } LLVMTypeRef LLVMDoubleType(void) { return (LLVMTypeRef) Type::DoubleTy; }
LLVMTypeRef LLVMX86FP80Type() { return (LLVMTypeRef) Type::X86_FP80Ty; } LLVMTypeRef LLVMX86FP80Type(void) { return (LLVMTypeRef) Type::X86_FP80Ty; }
LLVMTypeRef LLVMFP128Type() { return (LLVMTypeRef) Type::FP128Ty; } LLVMTypeRef LLVMFP128Type(void) { return (LLVMTypeRef) Type::FP128Ty; }
LLVMTypeRef LLVMPPCFP128Type() { return (LLVMTypeRef) Type::PPC_FP128Ty; } LLVMTypeRef LLVMPPCFP128Type(void) { return (LLVMTypeRef) Type::PPC_FP128Ty; }
/*--.. Operations on function types ........................................--*/ /*--.. Operations on function types ........................................--*/
@ -209,10 +209,10 @@ unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
/*--.. Operations on other types ...........................................--*/ /*--.. Operations on other types ...........................................--*/
LLVMTypeRef LLVMVoidType() { return (LLVMTypeRef) Type::VoidTy; } LLVMTypeRef LLVMVoidType(void) { return (LLVMTypeRef) Type::VoidTy; }
LLVMTypeRef LLVMLabelType() { return (LLVMTypeRef) Type::LabelTy; } LLVMTypeRef LLVMLabelType(void) { return (LLVMTypeRef) Type::LabelTy; }
LLVMTypeRef LLVMOpaqueType() { LLVMTypeRef LLVMOpaqueType(void) {
return wrap(llvm::OpaqueType::get()); return wrap(llvm::OpaqueType::get());
} }
@ -996,7 +996,7 @@ LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
/*===-- Instruction builders ----------------------------------------------===*/ /*===-- Instruction builders ----------------------------------------------===*/
LLVMBuilderRef LLVMCreateBuilder() { LLVMBuilderRef LLVMCreateBuilder(void) {
return wrap(new IRBuilder()); return wrap(new IRBuilder());
} }