diff options
author | Devang Patel <dpatel@apple.com> | 2008-03-20 02:25:21 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-03-20 02:25:21 +0000 |
commit | 4f4c28f75f74fe557efb63feaf5f4f8bf639dcd5 (patch) | |
tree | 7cdfae80ae3a817ab7cc0304e1f7a4ae3774f26a /lib/Analysis/InstCount.cpp | |
parent | 260e07ec8ceb98337a9eeb5377d97dfcc0058a25 (diff) |
Restore isCFGOnly property of various analysis passes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48579 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/InstCount.cpp')
-rw-r--r-- | lib/Analysis/InstCount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/InstCount.cpp b/lib/Analysis/InstCount.cpp index 2e0e8c6fcc..c4f36d3874 100644 --- a/lib/Analysis/InstCount.cpp +++ b/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(); } |