diff options
| author | Alp Toker <alp@nuanti.com> | 2013-10-26 08:46:05 +0000 |
|---|---|---|
| committer | Alp Toker <alp@nuanti.com> | 2013-10-26 08:46:05 +0000 |
| commit | 6c5dbd7a0a42b4126ae7508a9c292c3b05d4968f (patch) | |
| tree | eac6989c495211013a69c01f5686a11b1b435820 /llvm/utils | |
| parent | 9ade45482aaed8b098d03b48414ded053f5e83f7 (diff) | |
| download | bcm5719-llvm-6c5dbd7a0a42b4126ae7508a9c292c3b05d4968f.tar.gz bcm5719-llvm-6c5dbd7a0a42b4126ae7508a9c292c3b05d4968f.zip | |
Fix a referenced before assignment in r193463
Some versions of Python on the builders seem strict about this.
llvm-svn: 193464
Diffstat (limited to 'llvm/utils')
| -rw-r--r-- | llvm/utils/lit/lit/run.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/lit/lit/run.py b/llvm/utils/lit/lit/run.py index 8aaf52f1aec..ed39c40fa56 100644 --- a/llvm/utils/lit/lit/run.py +++ b/llvm/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 |

