tool_path = lit_config.params.get(tool_name)
if tool_path is None:
tool_path = lit.util.which(tool_name, llvm_tools_dir)
+ if tool_path is None:
+ return tool_name, tool_path, tool_pipe
if (tool_name == "llc" and
'LLVM_ENABLE_MACHINE_VERIFIER' in os.environ and
os.environ['LLVM_ENABLE_MACHINE_VERIFIER'] == "1"):
tool_path += " -verify-machineinstrs"
- if (tool_name == "llvm-go" and config.go_executable is not None):
+ if (tool_name == "llvm-go"):
tool_path += " go=" + config.go_executable
return tool_name, tool_path, tool_pipe