mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 06:39:12 +00:00
Tidy up CountingFunctionInserter a little. NFC.
Use StringRef for CountingFunctionName, remove erroneous comment copied from InstructionNamer, and drop some trailing whitespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316644 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e1b56f0dcf
commit
ddfb984471
@ -27,13 +27,13 @@ namespace {
|
||||
CountingFunctionInserter() : FunctionPass(ID) {
|
||||
initializeCountingFunctionInserterPass(*PassRegistry::getPassRegistry());
|
||||
}
|
||||
|
||||
|
||||
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
||||
AU.addPreserved<GlobalsAAWrapperPass>();
|
||||
}
|
||||
|
||||
bool runOnFunction(Function &F) override {
|
||||
std::string CountingFunctionName =
|
||||
StringRef CountingFunctionName =
|
||||
F.getFnAttribute("counting-function").getValueAsString();
|
||||
if (CountingFunctionName.empty())
|
||||
return false;
|
||||
@ -46,17 +46,13 @@ namespace {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
char CountingFunctionInserter::ID = 0;
|
||||
}
|
||||
|
||||
INITIALIZE_PASS(CountingFunctionInserter, "cfinserter",
|
||||
INITIALIZE_PASS(CountingFunctionInserter, "cfinserter",
|
||||
"Inserts calls to mcount-like functions", false, false)
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// CountingFunctionInserter - Give any unnamed non-void instructions "tmp" names.
|
||||
//
|
||||
FunctionPass *llvm::createCountingFunctionInserterPass() {
|
||||
return new CountingFunctionInserter();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user