Don't specify a -o option to clang when not using "-checker-cfref".

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51124 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-05-14 20:26:52 +00:00
Родитель 48921c8a2e
Коммит 26681e8e3a
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -165,8 +165,12 @@ def main(args):
clang = clang_env
# Get the HTML output directory.
htmldir = os.environ.get('CCC_ANALYZER_HTML')
htmldir = None
if analysis_type == "-checker-cfref":
htmldir = os.environ.get('CCC_ANALYZER_HTML')
# Process the arguments.
i = 0
while i < len(args):
arg = args[i]