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 | 4beccb897dc4851c61aaa7577d9a0aed0bac78bc (patch) | |
tree | 2dbfd1e1261583532db028bb19476ed0553887e6 /lib/Transforms/Hello/Hello.cpp | |
parent | 60b0d8459452a92a2ef0ed3f685b0c44f39f3d6b (diff) |
Remove use of SlowOperationInformer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35967 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Hello/Hello.cpp')
-rw-r--r-- | lib/Transforms/Hello/Hello.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Transforms/Hello/Hello.cpp b/lib/Transforms/Hello/Hello.cpp index a12a8a68cd..df8866279f 100644 --- a/lib/Transforms/Hello/Hello.cpp +++ b/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); |