mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-27 06:35:30 +00:00
[lit] Remove unnecessary list copy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187934 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
91a62c34d8
commit
6104a4e4cc
@ -32,7 +32,7 @@ class LitConfig:
|
|||||||
# The name of the test runner.
|
# The name of the test runner.
|
||||||
self.progname = progname
|
self.progname = progname
|
||||||
# The items to add to the PATH environment variable.
|
# The items to add to the PATH environment variable.
|
||||||
self.path = list([str(p) for p in path])
|
self.path = [str(p) for p in path]
|
||||||
self.quiet = bool(quiet)
|
self.quiet = bool(quiet)
|
||||||
self.useValgrind = bool(useValgrind)
|
self.useValgrind = bool(useValgrind)
|
||||||
self.valgrindLeakCheck = bool(valgrindLeakCheck)
|
self.valgrindLeakCheck = bool(valgrindLeakCheck)
|
||||||
|
Loading…
Reference in New Issue
Block a user