Hey,

Ted Kremenek wrote:
> Author: kremenek
> Date: Thu Jun 25 19:05:51 2009
> New Revision: 74229
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=74229&view=rev
> Log:
> Introduce a new concept to the static analyzer: SValuator.
> 
....

> As a consequence of removing GRSimpleVals, there is no longer a
> '-checker-simple' option. The '-checker-cfref' did everything that option did
> but also ran the retain/release checker. 

This patch removes a '-checker-simple' reference from scan-build.

-- 
Best regards,
Kovarththanan Rajaratnam
diff --git a/utils/scan-build b/utils/scan-build
index ca95676..8d99f07 100755
--- a/utils/scan-build
+++ b/utils/scan-build
@@ -131,7 +131,7 @@ while(<PIPE>) {
     
   if (/^\s\s\s\s([^\s]+)\s(.+)$/) {
     next if ($1 =~ /-dump/ or $1 =~ /-view/ 
-             or $1 =~ /-checker-simple/ or $1 =~ /-warn-uninit/);
+             or $1 =~ /-warn-uninit/);
              
     $AvailableAnalyses{$1} = $2;
     next;
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to