diff options
author | Devang Patel <dpatel@apple.com> | 2007-04-13 18:58:18 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-04-13 18:58:18 +0000 |
commit | 38705d5494fb7535a804a65c161bee546e5cd9c8 (patch) | |
tree | 057a0803765cef38c8e1eae9216f27b00996875c /llvm/lib/Transforms/Hello/Hello.cpp | |
parent | b730fe57bf44a52ed930fa08594885833c4b949f (diff) | |
download | bcm5719-llvm-38705d5494fb7535a804a65c161bee546e5cd9c8.tar.gz bcm5719-llvm-38705d5494fb7535a804a65c161bee546e5cd9c8.zip |
Remove use of SlowOperationInformer.
llvm-svn: 35967
Diffstat (limited to 'llvm/lib/Transforms/Hello/Hello.cpp')
-rw-r--r-- | llvm/lib/Transforms/Hello/Hello.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Hello/Hello.cpp b/llvm/lib/Transforms/Hello/Hello.cpp index a12a8a68cd9..df8866279f2 100644 --- a/llvm/lib/Transforms/Hello/Hello.cpp +++ b/llvm/lib/Transforms/Hello/Hello.cpp @@ -16,7 +16,6 @@ #include "llvm/Pass.h" #include "llvm/Function.h" #include "llvm/ADT/StringExtras.h" -#include "llvm/Support/SlowOperationInformer.h" #include "llvm/Support/Streams.h" #include "llvm/ADT/Statistic.h" using namespace llvm; @@ -27,7 +26,6 @@ namespace { // Hello - The first implementation, without getAnalysisUsage. struct Hello : public FunctionPass { virtual bool runOnFunction(Function &F) { - SlowOperationInformer soi("EscapeString"); HelloCounter++; std::string fname = F.getName(); EscapeString(fname); @@ -40,7 +38,6 @@ namespace { // Hello2 - The second implementation with getAnalysisUsage implemented. struct Hello2 : public FunctionPass { virtual bool runOnFunction(Function &F) { - SlowOperationInformer soi("EscapeString"); HelloCounter++; std::string fname = F.getName(); EscapeString(fname); |