aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/InstCount.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-03-20 02:25:21 +0000
committerDevang Patel <dpatel@apple.com>2008-03-20 02:25:21 +0000
commit80e43fa74494ce1adbc727b4b5f1541da2c0c555 (patch)
tree1421872a29789682d9349a16d4f4a0790975d0bb /llvm/lib/Analysis/InstCount.cpp
parent7a3e750fd24619f60d68f05b2605ecb3196bb6d3 (diff)
downloadllvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.zip
llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.tar.gz
llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.tar.bz2
Restore isCFGOnly property of various analysis passes.
llvm-svn: 48579
Diffstat (limited to 'llvm/lib/Analysis/InstCount.cpp')
-rw-r--r--llvm/lib/Analysis/InstCount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InstCount.cpp b/llvm/lib/Analysis/InstCount.cpp
index 2e0e8c6..c4f36d3 100644
--- a/llvm/lib/Analysis/InstCount.cpp
+++ b/llvm/lib/Analysis/InstCount.cpp
@@ -65,7 +65,7 @@ namespace {
char InstCount::ID = 0;
RegisterPass<InstCount> X("instcount",
- "Counts the various types of Instructions", true, true);
+ "Counts the various types of Instructions", false, true);
}
FunctionPass *llvm::createInstCountPass() { return new InstCount(); }