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 | a7f1d72d09f174da56217c0776dcab74998e50b9 (patch) | |
tree | 9cf8d0fa75a7a1b2e6e599719fb4a7c2335a3112 /utils/lit | |
parent | 2b110caabfa00a048fceba7e5a0df04cf4c6f691 (diff) | |
download | external_llvm-a7f1d72d09f174da56217c0776dcab74998e50b9.zip external_llvm-a7f1d72d09f174da56217c0776dcab74998e50b9.tar.gz external_llvm-a7f1d72d09f174da56217c0776dcab74998e50b9.tar.bz2 |
Delete a spurious semicolon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85018 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit')
-rw-r--r-- | utils/lit/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/Util.py b/utils/lit/Util.py index e62a8ed..66c5e46 100644 --- a/utils/lit/Util.py +++ b/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 |