Add -DIBOutlet=__attribute__((iboutlet)) to analyzer arguments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53648 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-07-15 23:09:14 +00:00
Родитель f4ebf42b06
Коммит ef42ca26ec
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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 = []