mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Remove use of SlowOperationInformer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35967 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -16,7 +16,6 @@
|
|||||||
#include "llvm/Pass.h"
|
#include "llvm/Pass.h"
|
||||||
#include "llvm/Function.h"
|
#include "llvm/Function.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
#include "llvm/Support/SlowOperationInformer.h"
|
|
||||||
#include "llvm/Support/Streams.h"
|
#include "llvm/Support/Streams.h"
|
||||||
#include "llvm/ADT/Statistic.h"
|
#include "llvm/ADT/Statistic.h"
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
@ -27,7 +26,6 @@ namespace {
|
|||||||
// Hello - The first implementation, without getAnalysisUsage.
|
// Hello - The first implementation, without getAnalysisUsage.
|
||||||
struct Hello : public FunctionPass {
|
struct Hello : public FunctionPass {
|
||||||
virtual bool runOnFunction(Function &F) {
|
virtual bool runOnFunction(Function &F) {
|
||||||
SlowOperationInformer soi("EscapeString");
|
|
||||||
HelloCounter++;
|
HelloCounter++;
|
||||||
std::string fname = F.getName();
|
std::string fname = F.getName();
|
||||||
EscapeString(fname);
|
EscapeString(fname);
|
||||||
@ -40,7 +38,6 @@ namespace {
|
|||||||
// Hello2 - The second implementation with getAnalysisUsage implemented.
|
// Hello2 - The second implementation with getAnalysisUsage implemented.
|
||||||
struct Hello2 : public FunctionPass {
|
struct Hello2 : public FunctionPass {
|
||||||
virtual bool runOnFunction(Function &F) {
|
virtual bool runOnFunction(Function &F) {
|
||||||
SlowOperationInformer soi("EscapeString");
|
|
||||||
HelloCounter++;
|
HelloCounter++;
|
||||||
std::string fname = F.getName();
|
std::string fname = F.getName();
|
||||||
EscapeString(fname);
|
EscapeString(fname);
|
||||||
|
Reference in New Issue
Block a user