[llvm-commits] CVS: llvm/lib/Transforms/Hello/Hello.cpp
Devang Patel
dpatel at apple.com
Fri Apr 13 11:58:35 PDT 2007
Changes in directory llvm/lib/Transforms/Hello:
Hello.cpp updated: 1.13 -> 1.14
---
Log message:
Remove use of SlowOperationInformer.
---
Diffs of the changes: (+0 -3)
Hello.cpp | 3 ---
1 files changed, 3 deletions(-)
Index: llvm/lib/Transforms/Hello/Hello.cpp
diff -u llvm/lib/Transforms/Hello/Hello.cpp:1.13 llvm/lib/Transforms/Hello/Hello.cpp:1.14
--- llvm/lib/Transforms/Hello/Hello.cpp:1.13 Tue Dec 19 16:24:09 2006
+++ llvm/lib/Transforms/Hello/Hello.cpp Fri Apr 13 13:58:18 2007
@@ -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 @@
// 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 @@
// 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);
More information about the llvm-commits
mailing list