]> granicus.if.org Git - clang/commitdiff
Fixed regressions in error reporting due to copy-paste errors (using the "begin"
authorTed Kremenek <kremenek@apple.com>
Thu, 10 Apr 2008 16:05:13 +0000 (16:05 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 10 Apr 2008 16:05:13 +0000 (16:05 +0000)
iterator instead of "end") and not implementing "getDescription()" for Nil
argument checks.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49485 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/BugReporter.h
lib/Analysis/BasicObjCFoundationChecks.cpp
lib/Analysis/GRSimpleVals.cpp

index 9f8b17ac00f5bd54a86678a9fc77efd5c987aca4..adb18ab42a6f6bebf823689c4ef9b5017f5157cd 100644 (file)
@@ -51,7 +51,10 @@ public:
   const BugType& getBugType() const { return Desc; }
     
   const char* getName() const { return getBugType().getName(); }
-  const char* getDescription() const { return getBugType().getDescription(); }
+
+  virtual const char* getDescription() const {
+    return getBugType().getDescription();
+  }
   
   virtual PathDiagnosticPiece* getEndPath(ASTContext& Ctx,
                                           ExplodedNode<ValueState> *N) const;
index 154adcaa477843ed57f104f5f5bedaee2ac4d8a0..e5a31bf50dfc1a9416dd871d73b33da9affb27d8 100644 (file)
@@ -84,6 +84,13 @@ public:
     
     virtual ~Report() {}
     
+    virtual const char* getDescription() const { return s; }
+    
+    virtual void getRanges(const SourceRange*& B, const SourceRange*& E) const {
+      B = &R;
+      E = B+1;
+    }
+    
     virtual PathDiagnosticPiece* getEndPath(ASTContext& Ctx,
                                             ExplodedNode<ValueState> *N) const {
       
index e7b456ff21cc432d496fc4723f17e018f26d84ee..960476dff02c2e57039c1329ecfc86351f8fae5a 100644 (file)
@@ -135,7 +135,7 @@ public:
   virtual void EmitWarnings(BugReporter& BR) {
     GRExprEngine& Eng = BR.getEngine();
     GenericEmitWarnings(BR, *this, Eng.undef_results_begin(),
-                        Eng.undef_results_begin());
+                        Eng.undef_results_end());
   }
 };
   
@@ -152,7 +152,7 @@ public:
   virtual void EmitWarnings(BugReporter& BR) {
     GRExprEngine& Eng = BR.getEngine();
     GenericEmitWarnings(BR, *this, Eng.bad_calls_begin(),
-                        Eng.bad_calls_begin());
+                        Eng.bad_calls_end());
   }
 };
   
@@ -214,7 +214,7 @@ public:
     GRExprEngine& Eng = BR.getEngine();
     
     for (GRExprEngine::UndefArgsTy::iterator I=Eng.msg_expr_undef_arg_begin(),
-         E = Eng.msg_expr_undef_arg_begin(); I!=E; ++I) {
+         E = Eng.msg_expr_undef_arg_end(); I!=E; ++I) {
       
       // Generate a report for this bug.
       Report report(*this, I->second);
@@ -283,7 +283,7 @@ public:
   virtual void EmitWarnings(BugReporter& BR) {
     GRExprEngine& Eng = BR.getEngine();
     GenericEmitWarnings(BR, *this, Eng.ret_stackaddr_begin(),
-                        Eng.ret_stackaddr_begin());
+                        Eng.ret_stackaddr_end());
   }
 };