Use empty parens for empty function parameter list instead of '(void)'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168049 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dmitri Gribenko
2012-11-15 16:51:49 +00:00
parent 65f3f32100
commit 79c07d2a36
11 changed files with 23 additions and 23 deletions

View File

@ -135,7 +135,7 @@ public:
// initPacketizerState - perform initialization before packetizing // initPacketizerState - perform initialization before packetizing
// an instruction. This function is supposed to be overrided by // an instruction. This function is supposed to be overrided by
// the target dependent packetizer. // the target dependent packetizer.
virtual void initPacketizerState(void) { return; } virtual void initPacketizerState() { return; }
// ignorePseudoInstruction - Ignore bundling of pseudo instructions. // ignorePseudoInstruction - Ignore bundling of pseudo instructions.
virtual bool ignorePseudoInstruction(MachineInstr *I, virtual bool ignorePseudoInstruction(MachineInstr *I,

View File

@ -372,7 +372,7 @@ public:
/// getCurrentCallSite - Get the call site currently being processed, if any. /// getCurrentCallSite - Get the call site currently being processed, if any.
/// return zero if none. /// return zero if none.
unsigned getCurrentCallSite(void) { return CurCallSite; } unsigned getCurrentCallSite() { return CurCallSite; }
/// getTypeInfos - Return a reference to the C++ typeinfo for the current /// getTypeInfos - Return a reference to the C++ typeinfo for the current
/// function. /// function.

View File

@ -41,10 +41,10 @@ class OProfileWrapper {
typedef int (*op_unload_native_code_ptr_t)(op_agent_t, uint64_t); typedef int (*op_unload_native_code_ptr_t)(op_agent_t, uint64_t);
// Also used for op_minor_version function which has the same signature // Also used for op_minor_version function which has the same signature
typedef int (*op_major_version_ptr_t)(void); typedef int (*op_major_version_ptr_t)();
// This is not a part of the opagent API, but is useful nonetheless // This is not a part of the opagent API, but is useful nonetheless
typedef bool (*IsOProfileRunningPtrT)(void); typedef bool (*IsOProfileRunningPtrT)();
op_agent_t Agent; op_agent_t Agent;
@ -99,8 +99,8 @@ public:
size_t num_entries, size_t num_entries,
struct debug_line_info const* info); struct debug_line_info const* info);
int op_unload_native_code(uint64_t addr); int op_unload_native_code(uint64_t addr);
int op_major_version(void); int op_major_version();
int op_minor_version(void); int op_minor_version();
// Returns true if the oprofiled process is running, the opagent library is // Returns true if the oprofiled process is running, the opagent library is
// loaded and a connection to the agent has been established, and false // loaded and a connection to the agent has been established, and false

View File

@ -230,7 +230,7 @@ public:
/// doInitialization - Virtual method overridden by subclasses to do /// doInitialization - Virtual method overridden by subclasses to do
/// any necessary initialization. /// any necessary initialization.
/// ///
virtual bool doInitialization(void) { return false; } virtual bool doInitialization() { return false; }
/// runOnModule - Virtual method overriden by subclasses to process the module /// runOnModule - Virtual method overriden by subclasses to process the module
/// being operated on. /// being operated on.
@ -239,7 +239,7 @@ public:
/// doFinalization - Virtual method overriden by subclasses to do any post /// doFinalization - Virtual method overriden by subclasses to do any post
/// processing needed after all passes have run. /// processing needed after all passes have run.
/// ///
virtual bool doFinalization(void) { return false; } virtual bool doFinalization() { return false; }
virtual void assignPassManager(PMStack &PMS, virtual void assignPassManager(PMStack &PMS,
PassManagerType T); PassManagerType T);

View File

@ -71,7 +71,7 @@ namespace llvm
/// flushBuffer - Dump the contents of the buffer to Stream. /// flushBuffer - Dump the contents of the buffer to Stream.
/// ///
void flushBuffer(void) { void flushBuffer() {
if (Filled) if (Filled)
// Write the older portion of the buffer. // Write the older portion of the buffer.
TheStream->write(Cur, BufferArray + BufferSize - Cur); TheStream->write(Cur, BufferArray + BufferSize - Cur);
@ -151,7 +151,7 @@ namespace llvm
/// flushBufferWithBanner - Force output of the buffer along with /// flushBufferWithBanner - Force output of the buffer along with
/// a small header. /// a small header.
/// ///
void flushBufferWithBanner(void); void flushBufferWithBanner();
private: private:
/// releaseStream - Delete the held stream if needed. Otherwise, /// releaseStream - Delete the held stream if needed. Otherwise,

View File

@ -398,7 +398,7 @@ GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const {
} }
MCSymbol *ARMAsmPrinter::GetARMSJLJEHLabel(void) const { MCSymbol *ARMAsmPrinter::GetARMSJLJEHLabel() const {
SmallString<60> Name; SmallString<60> Name;
raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "SJLJEH" raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "SJLJEH"
<< getFunctionNumber(); << getFunctionNumber();

View File

@ -121,7 +121,7 @@ private:
MCOperand GetSymbolRef(const MachineOperand &MO, const MCSymbol *Symbol); MCOperand GetSymbolRef(const MachineOperand &MO, const MCSymbol *Symbol);
MCSymbol *GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const; MCSymbol *GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const;
MCSymbol *GetARMSJLJEHLabel(void) const; MCSymbol *GetARMSJLJEHLabel() const;
MCSymbol *GetARMGVSymbol(const GlobalValue *GV); MCSymbol *GetARMGVSymbol(const GlobalValue *GV);

View File

@ -248,7 +248,7 @@ namespace llvm {
public: public:
explicit ARMTargetLowering(TargetMachine &TM); explicit ARMTargetLowering(TargetMachine &TM);
virtual unsigned getJumpTableEncoding(void) const; virtual unsigned getJumpTableEncoding() const;
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const; virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;

View File

@ -323,7 +323,7 @@ void PassManagerBuilder::populateLTOPassManager(PassManagerBase &PM,
PM.add(createGlobalDCEPass()); PM.add(createGlobalDCEPass());
} }
LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate(void) { LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
PassManagerBuilder *PMB = new PassManagerBuilder(); PassManagerBuilder *PMB = new PassManagerBuilder();
return wrap(PMB); return wrap(PMB);
} }

View File

@ -37,7 +37,7 @@ namespace {
next = seed; next = seed;
} }
int rand(void) { int rand() {
next = next * 1103515245 + 12345; next = next * 1103515245 + 12345;
return (unsigned int)(next / 65536) % 32768; return (unsigned int)(next / 65536) % 32768;
} }

View File

@ -311,11 +311,11 @@ public:
/// doInitialization - Run all of the initializers for the module passes. /// doInitialization - Run all of the initializers for the module passes.
/// ///
bool doInitialization(void); bool doInitialization();
/// doFinalization - Run all of the finalizers for the module passes. /// doFinalization - Run all of the finalizers for the module passes.
/// ///
bool doFinalization(void); bool doFinalization();
/// Pass Manager itself does not invalidate any analysis info. /// Pass Manager itself does not invalidate any analysis info.
void getAnalysisUsage(AnalysisUsage &Info) const { void getAnalysisUsage(AnalysisUsage &Info) const {
@ -404,11 +404,11 @@ public:
/// doInitialization - Run all of the initializers for the module passes. /// doInitialization - Run all of the initializers for the module passes.
/// ///
bool doInitialization(void); bool doInitialization();
/// doFinalization - Run all of the finalizers for the module passes. /// doFinalization - Run all of the finalizers for the module passes.
/// ///
bool doFinalization(void); bool doFinalization();
/// Pass Manager itself does not invalidate any analysis info. /// Pass Manager itself does not invalidate any analysis info.
void getAnalysisUsage(AnalysisUsage &Info) const { void getAnalysisUsage(AnalysisUsage &Info) const {
@ -1616,7 +1616,7 @@ MPPassManager::runOnModule(Module &M) {
/// Run all of the initializers for the module passes. /// Run all of the initializers for the module passes.
/// ///
bool MPPassManager::doInitialization(void) { bool MPPassManager::doInitialization() {
bool Changed = false; bool Changed = false;
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
@ -1627,7 +1627,7 @@ bool MPPassManager::doInitialization(void) {
/// Run all of the finalizers for the module passes. /// Run all of the finalizers for the module passes.
/// ///
bool MPPassManager::doFinalization(void) { bool MPPassManager::doFinalization() {
bool Changed = false; bool Changed = false;
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
@ -1680,7 +1680,7 @@ Pass* MPPassManager::getOnTheFlyPass(Pass *MP, AnalysisID PI, Function &F){
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// PassManagerImpl implementation // PassManagerImpl implementation
bool PassManagerImpl::doInitialization(void) { bool PassManagerImpl::doInitialization() {
bool Changed = false; bool Changed = false;
for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)
@ -1689,7 +1689,7 @@ bool PassManagerImpl::doInitialization(void) {
return Changed; return Changed;
} }
bool PassManagerImpl::doFinalization(void) { bool PassManagerImpl::doFinalization() {
bool Changed = false; bool Changed = false;
for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)