mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-07 11:51:13 +00:00
Use empty parens for empty function parameter list instead of '(void)'.
llvm-svn: 168049
This commit is contained in:
parent
84238ab4c9
commit
610d06f00e
@ -135,7 +135,7 @@ public:
|
||||
// initPacketizerState - perform initialization before packetizing
|
||||
// an instruction. This function is supposed to be overrided by
|
||||
// the target dependent packetizer.
|
||||
virtual void initPacketizerState(void) { return; }
|
||||
virtual void initPacketizerState() { return; }
|
||||
|
||||
// ignorePseudoInstruction - Ignore bundling of pseudo instructions.
|
||||
virtual bool ignorePseudoInstruction(MachineInstr *I,
|
||||
|
@ -372,7 +372,7 @@ public:
|
||||
|
||||
/// getCurrentCallSite - Get the call site currently being processed, if any.
|
||||
/// return zero if none.
|
||||
unsigned getCurrentCallSite(void) { return CurCallSite; }
|
||||
unsigned getCurrentCallSite() { return CurCallSite; }
|
||||
|
||||
/// getTypeInfos - Return a reference to the C++ typeinfo for the current
|
||||
/// function.
|
||||
|
@ -41,10 +41,10 @@ class OProfileWrapper {
|
||||
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
|
||||
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
|
||||
typedef bool (*IsOProfileRunningPtrT)(void);
|
||||
typedef bool (*IsOProfileRunningPtrT)();
|
||||
|
||||
|
||||
op_agent_t Agent;
|
||||
@ -99,8 +99,8 @@ public:
|
||||
size_t num_entries,
|
||||
struct debug_line_info const* info);
|
||||
int op_unload_native_code(uint64_t addr);
|
||||
int op_major_version(void);
|
||||
int op_minor_version(void);
|
||||
int op_major_version();
|
||||
int op_minor_version();
|
||||
|
||||
// Returns true if the oprofiled process is running, the opagent library is
|
||||
// loaded and a connection to the agent has been established, and false
|
||||
|
@ -230,7 +230,7 @@ public:
|
||||
/// doInitialization - Virtual method overridden by subclasses to do
|
||||
/// any necessary initialization.
|
||||
///
|
||||
virtual bool doInitialization(void) { return false; }
|
||||
virtual bool doInitialization() { return false; }
|
||||
|
||||
/// runOnModule - Virtual method overriden by subclasses to process the module
|
||||
/// being operated on.
|
||||
@ -239,7 +239,7 @@ public:
|
||||
/// doFinalization - Virtual method overriden by subclasses to do any post
|
||||
/// processing needed after all passes have run.
|
||||
///
|
||||
virtual bool doFinalization(void) { return false; }
|
||||
virtual bool doFinalization() { return false; }
|
||||
|
||||
virtual void assignPassManager(PMStack &PMS,
|
||||
PassManagerType T);
|
||||
|
@ -71,7 +71,7 @@ namespace llvm
|
||||
|
||||
/// flushBuffer - Dump the contents of the buffer to Stream.
|
||||
///
|
||||
void flushBuffer(void) {
|
||||
void flushBuffer() {
|
||||
if (Filled)
|
||||
// Write the older portion of the buffer.
|
||||
TheStream->write(Cur, BufferArray + BufferSize - Cur);
|
||||
@ -151,7 +151,7 @@ namespace llvm
|
||||
/// flushBufferWithBanner - Force output of the buffer along with
|
||||
/// a small header.
|
||||
///
|
||||
void flushBufferWithBanner(void);
|
||||
void flushBufferWithBanner();
|
||||
|
||||
private:
|
||||
/// releaseStream - Delete the held stream if needed. Otherwise,
|
||||
|
@ -398,7 +398,7 @@ GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const {
|
||||
}
|
||||
|
||||
|
||||
MCSymbol *ARMAsmPrinter::GetARMSJLJEHLabel(void) const {
|
||||
MCSymbol *ARMAsmPrinter::GetARMSJLJEHLabel() const {
|
||||
SmallString<60> Name;
|
||||
raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "SJLJEH"
|
||||
<< getFunctionNumber();
|
||||
|
@ -121,7 +121,7 @@ private:
|
||||
MCOperand GetSymbolRef(const MachineOperand &MO, const MCSymbol *Symbol);
|
||||
MCSymbol *GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const;
|
||||
|
||||
MCSymbol *GetARMSJLJEHLabel(void) const;
|
||||
MCSymbol *GetARMSJLJEHLabel() const;
|
||||
|
||||
MCSymbol *GetARMGVSymbol(const GlobalValue *GV);
|
||||
|
||||
|
@ -248,7 +248,7 @@ namespace llvm {
|
||||
public:
|
||||
explicit ARMTargetLowering(TargetMachine &TM);
|
||||
|
||||
virtual unsigned getJumpTableEncoding(void) const;
|
||||
virtual unsigned getJumpTableEncoding() const;
|
||||
|
||||
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
|
||||
|
||||
|
@ -323,7 +323,7 @@ void PassManagerBuilder::populateLTOPassManager(PassManagerBase &PM,
|
||||
PM.add(createGlobalDCEPass());
|
||||
}
|
||||
|
||||
LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate(void) {
|
||||
LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
|
||||
PassManagerBuilder *PMB = new PassManagerBuilder();
|
||||
return wrap(PMB);
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ namespace {
|
||||
next = seed;
|
||||
}
|
||||
|
||||
int rand(void) {
|
||||
int rand() {
|
||||
next = next * 1103515245 + 12345;
|
||||
return (unsigned int)(next / 65536) % 32768;
|
||||
}
|
||||
|
@ -311,11 +311,11 @@ public:
|
||||
|
||||
/// 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.
|
||||
///
|
||||
bool doFinalization(void);
|
||||
bool doFinalization();
|
||||
|
||||
/// Pass Manager itself does not invalidate any analysis info.
|
||||
void getAnalysisUsage(AnalysisUsage &Info) const {
|
||||
@ -404,11 +404,11 @@ public:
|
||||
|
||||
/// 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.
|
||||
///
|
||||
bool doFinalization(void);
|
||||
bool doFinalization();
|
||||
|
||||
/// Pass Manager itself does not invalidate any analysis info.
|
||||
void getAnalysisUsage(AnalysisUsage &Info) const {
|
||||
@ -1616,7 +1616,7 @@ MPPassManager::runOnModule(Module &M) {
|
||||
|
||||
/// Run all of the initializers for the module passes.
|
||||
///
|
||||
bool MPPassManager::doInitialization(void) {
|
||||
bool MPPassManager::doInitialization() {
|
||||
bool Changed = false;
|
||||
|
||||
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
|
||||
@ -1627,7 +1627,7 @@ bool MPPassManager::doInitialization(void) {
|
||||
|
||||
/// Run all of the finalizers for the module passes.
|
||||
///
|
||||
bool MPPassManager::doFinalization(void) {
|
||||
bool MPPassManager::doFinalization() {
|
||||
bool Changed = false;
|
||||
|
||||
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
|
||||
@ -1680,7 +1680,7 @@ Pass* MPPassManager::getOnTheFlyPass(Pass *MP, AnalysisID PI, Function &F){
|
||||
//===----------------------------------------------------------------------===//
|
||||
// PassManagerImpl implementation
|
||||
|
||||
bool PassManagerImpl::doInitialization(void) {
|
||||
bool PassManagerImpl::doInitialization() {
|
||||
bool Changed = false;
|
||||
|
||||
for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)
|
||||
@ -1689,7 +1689,7 @@ bool PassManagerImpl::doInitialization(void) {
|
||||
return Changed;
|
||||
}
|
||||
|
||||
bool PassManagerImpl::doFinalization(void) {
|
||||
bool PassManagerImpl::doFinalization() {
|
||||
bool Changed = false;
|
||||
|
||||
for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)
|
||||
|
Loading…
Reference in New Issue
Block a user