mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-05 09:41:46 +00:00
Minor cleanups to follow the common convention for pass
registration variables. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111596 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
af0636f4d6
commit
a2a3bbc668
@ -41,12 +41,12 @@ namespace {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
char CrashOnCalls::ID = 0;
|
char CrashOnCalls::ID = 0;
|
||||||
RegisterPass<CrashOnCalls>
|
static RegisterPass<CrashOnCalls>
|
||||||
X("bugpoint-crashcalls",
|
X("bugpoint-crashcalls",
|
||||||
"BugPoint Test Pass - Intentionally crash on CallInsts");
|
"BugPoint Test Pass - Intentionally crash on CallInsts");
|
||||||
}
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
/// DeleteCalls - This pass is used to test bugpoint. It intentionally
|
/// DeleteCalls - This pass is used to test bugpoint. It intentionally
|
||||||
@ -67,9 +67,9 @@ namespace {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
char DeleteCalls::ID = 0;
|
char DeleteCalls::ID = 0;
|
||||||
RegisterPass<DeleteCalls>
|
static RegisterPass<DeleteCalls>
|
||||||
Y("bugpoint-deletecalls",
|
Y("bugpoint-deletecalls",
|
||||||
"BugPoint Test Pass - Intentionally 'misoptimize' CallInsts");
|
"BugPoint Test Pass - Intentionally 'misoptimize' CallInsts");
|
||||||
}
|
|
||||||
|
@ -66,12 +66,14 @@ namespace {
|
|||||||
AU.setPreservesAll();
|
AU.setPreservesAll();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
char ExternalFunctionsPassedConstants::ID = 0;
|
char ExternalFunctionsPassedConstants::ID = 0;
|
||||||
RegisterPass<ExternalFunctionsPassedConstants>
|
static RegisterPass<ExternalFunctionsPassedConstants>
|
||||||
P1("print-externalfnconstants",
|
P1("print-externalfnconstants",
|
||||||
"Print external fn callsites passed constants");
|
"Print external fn callsites passed constants");
|
||||||
|
|
||||||
|
namespace {
|
||||||
struct CallGraphPrinter : public ModulePass {
|
struct CallGraphPrinter : public ModulePass {
|
||||||
static char ID; // Pass ID, replacement for typeid
|
static char ID; // Pass ID, replacement for typeid
|
||||||
CallGraphPrinter() : ModulePass(ID) {}
|
CallGraphPrinter() : ModulePass(ID) {}
|
||||||
@ -85,8 +87,8 @@ namespace {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
char CallGraphPrinter::ID = 0;
|
|
||||||
RegisterPass<CallGraphPrinter>
|
|
||||||
P2("print-callgraph", "Print a call graph");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char CallGraphPrinter::ID = 0;
|
||||||
|
static RegisterPass<CallGraphPrinter>
|
||||||
|
P2("print-callgraph", "Print a call graph");
|
||||||
|
@ -79,12 +79,12 @@ namespace {
|
|||||||
AU.setPreservesAll();
|
AU.setPreservesAll();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
char CallGraphPrinter::ID = 0;
|
|
||||||
RegisterPass<CallGraphPrinter> P2("dot-callgraph",
|
|
||||||
"Print Call Graph to 'dot' file");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char CallGraphPrinter::ID = 0;
|
||||||
|
static RegisterPass<CallGraphPrinter> P2("dot-callgraph",
|
||||||
|
"Print Call Graph to 'dot' file");
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// DomInfoPrinter Pass
|
// DomInfoPrinter Pass
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@ -110,8 +110,8 @@ namespace {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
char DomInfoPrinter::ID = 0;
|
|
||||||
static RegisterPass<DomInfoPrinter>
|
|
||||||
DIP("print-dom-info", "Dominator Info Printer", true, true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char DomInfoPrinter::ID = 0;
|
||||||
|
static RegisterPass<DomInfoPrinter>
|
||||||
|
DIP("print-dom-info", "Dominator Info Printer", true, true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user