diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-24 23:24:45 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-24 23:24:45 +0000 |
commit | e155f8646c26401d2b723babc4e2358f11c18a1f (patch) | |
tree | bf9691a4093bdf87dd69bd6d0e08193c671445d0 /llvm/utils/lit/Util.py | |
parent | a484d17ec51928a6cbd9963a783e0eeeedd55d71 (diff) | |
download | bcm5719-llvm-e155f8646c26401d2b723babc4e2358f11c18a1f.tar.gz bcm5719-llvm-e155f8646c26401d2b723babc4e2358f11c18a1f.zip |
Delete a spurious semicolon.
llvm-svn: 85018
Diffstat (limited to 'llvm/utils/lit/Util.py')
-rw-r--r-- | llvm/utils/lit/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/lit/Util.py b/llvm/utils/lit/Util.py index e62a8ed81dc..66c5e46f690 100644 --- a/llvm/utils/lit/Util.py +++ b/llvm/utils/lit/Util.py @@ -15,7 +15,7 @@ def detectCPUs(): return int(os.popen2("sysctl -n hw.ncpu")[1].read()) # Windows: if os.environ.has_key("NUMBER_OF_PROCESSORS"): - ncpus = int(os.environ["NUMBER_OF_PROCESSORS"]); + ncpus = int(os.environ["NUMBER_OF_PROCESSORS"]) if ncpus > 0: return ncpus return 1 # Default |