From: Alp Toker Date: Sat, 26 Oct 2013 08:46:05 +0000 (+0000) Subject: Fix a referenced before assignment in r193463 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8d93aa0de330e24fe1cec7a915bdf1354da377fa;p=oota-llvm.git 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 --- diff --git a/utils/lit/lit/run.py b/utils/lit/lit/run.py index 8aaf52f1aec..ed39c40fa56 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