[cfe-commits] r161443 - /cfe/trunk/tools/scan-build/ccc-analyzer
    Ted Kremenek 
    kremenek at apple.com
       
    Tue Aug  7 12:27:08 PDT 2012
    
    
  
Author: kremenek
Date: Tue Aug  7 14:27:08 2012
New Revision: 161443
URL: http://llvm.org/viewvc/llvm-project?rev=161443&view=rev
Log:
Teach ccc-analyze about -fobjc-legacy-dispatch and -mios-simulator-version-min
Modified:
    cfe/trunk/tools/scan-build/ccc-analyzer
Modified: cfe/trunk/tools/scan-build/ccc-analyzer
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/scan-build/ccc-analyzer?rev=161443&r1=161442&r2=161443&view=diff
==============================================================================
--- cfe/trunk/tools/scan-build/ccc-analyzer (original)
+++ cfe/trunk/tools/scan-build/ccc-analyzer Tue Aug  7 14:27:08 2012
@@ -347,6 +347,8 @@
 my %CompilerLinkerOptionMap = (
   '-fobjc-arc' => 0,
   '-fobjc-abi-version' => 0, # This is really a 1 argument, but always has '='
+  '-fobjc-legacy-dispatch' => 0,
+  '-mios-simulator-version-min' => 0, # This really has 1 argument, but always has '='
   '-isysroot' => 1,
   '-arch' => 1,
   '-m32' => 0,
    
    
More information about the cfe-commits
mailing list