commit | 39b8c4b28545500ba1dd40b6f0931975596a1517 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Fri Sep 07 23:54:15 2007 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Fri Sep 07 23:54:15 2007 +0000 |
tree | b4e8761a96d2ecfbffb656973128c347fdc51ea2 | |
parent | 1e3c202ea10c2a00a7d9757a28bd8e0394bd6c4a [diff] [blame] |
-check-dead-stores now no longer prints out the function declarations for each function. This was the behavior prior to the following patch: http://llvm.org/viewvc/llvm-project?view=rev&revision=41779 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41780 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/ASTStreamers.cpp b/Driver/ASTStreamers.cpp index d6db959..59be1b3 100644 --- a/Driver/ASTStreamers.cpp +++ b/Driver/ASTStreamers.cpp
@@ -259,6 +259,7 @@ public: DeadStoreVisitor(Preprocessor& pp) : PP(pp) {} virtual void VisitCFG(CFG& C) { CheckDeadStores(C,PP); } + virtual bool printFuncDeclStart() { return false; } }; } // end anonymous namespace