]> granicus.if.org Git - clang/commitdiff
Add -DIBOutlet=__attribute__((iboutlet)) to analyzer arguments.
authorTed Kremenek <kremenek@apple.com>
Tue, 15 Jul 2008 23:09:14 +0000 (23:09 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 15 Jul 2008 23:09:14 +0000 (23:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53648 91177308-0d34-0410-b5e6-96231b3b80d8

utils/ccc-analyzer

index 1499dfc84c493f63531aac588bdea67213b92e5c..98e083d8d2698fcab1f26670c5de7d4a09d00f38 100755 (executable)
@@ -55,7 +55,7 @@ def analyze(clang, args,language,output,files,verbose,htmldir,file,analysis_type
     args = command + files + [ target ]
   else:
     command = clang.split() + analysis_type.split()
-    args = command + args;
+    args = command + "-DIBOutlet=__attribute__((iboutlet))".split() + args;
     RunAnalyzer = 1
 
   print_args = []