From 8d93aa0de330e24fe1cec7a915bdf1354da377fa Mon Sep 17 00:00:00 2001 From: Alp Toker Date: Sat, 26 Oct 2013 08:46:05 +0000 Subject: Fix a referenced before assignment in r193463 Some versions of Python on the builders seem strict about this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193464 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/lit/run.py | 1 + 1 file changed, 1 insertion(+) (limited to 'utils/lit') diff --git a/utils/lit/lit/run.py b/utils/lit/lit/run.py index 8aaf52f1ae..ed39c40fa5 100644 --- a/utils/lit/lit/run.py +++ b/utils/lit/lit/run.py @@ -209,6 +209,7 @@ class Run(object): """ # Choose the appropriate parallel execution implementation. + consumer = None if jobs != 1 and use_processes and multiprocessing: try: task_impl = multiprocessing.Process -- cgit v1.2.3