-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

llvm-svn: 41780
This commit is contained in:
Ted Kremenek 2007-09-07 23:54:15 +00:00
parent 45c9e96c2b
commit 35fff1e656
1 changed files with 1 additions and 0 deletions

View File

@ -259,6 +259,7 @@ namespace {
public:
DeadStoreVisitor(Preprocessor& pp) : PP(pp) {}
virtual void VisitCFG(CFG& C) { CheckDeadStores(C,PP); }
virtual bool printFuncDeclStart() { return false; }
};
} // end anonymous namespace