[llvm-commits] [llvm] r85018 - /llvm/trunk/utils/lit/Util.py
Dan Gohman
gohman at apple.com
Sat Oct 24 16:24:46 PDT 2009
Author: djg
Date: Sat Oct 24 18:24:45 2009
New Revision: 85018
URL: http://llvm.org/viewvc/llvm-project?rev=85018&view=rev
Log:
Delete a spurious semicolon.
Modified:
llvm/trunk/utils/lit/Util.py
Modified: llvm/trunk/utils/lit/Util.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/lit/Util.py?rev=85018&r1=85017&r2=85018&view=diff
==============================================================================
--- llvm/trunk/utils/lit/Util.py (original)
+++ llvm/trunk/utils/lit/Util.py Sat Oct 24 18:24:45 2009
@@ -15,7 +15,7 @@
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
More information about the llvm-commits
mailing list