diff options
author | Brian Gesiak <modocache@gmail.com> | 2016-10-10 01:20:43 +0000 |
---|---|---|
committer | Brian Gesiak <modocache@gmail.com> | 2016-10-10 01:20:43 +0000 |
commit | 3a0f79fb190aac1f3f872aeb843a77081efe6750 (patch) | |
tree | 09b0b7418fab52696435391f51a702b91d0bc095 | |
parent | b25861c31ea75e3ef5a5853bcf014f1507066d89 (diff) | |
download | bcm5719-llvm-3a0f79fb190aac1f3f872aeb843a77081efe6750.tar.gz bcm5719-llvm-3a0f79fb190aac1f3f872aeb843a77081efe6750.zip |
[lit] Remove unused TestingProgressDisplay attr
Summary:
`TestingProgressDisplay` initializes its `current` attribute to `None`, but
never reads or writes the value again. Remove it.
Reviewers: echristo, delcypher, beanz, ddunbar
Subscribers: llvm-commits, mehdi_amini
Differential Revision: https://reviews.llvm.org/D25415
llvm-svn: 283709
-rwxr-xr-x | llvm/utils/lit/lit/main.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/utils/lit/lit/main.py b/llvm/utils/lit/lit/main.py index 942c425e997..ac3066eea72 100755 --- a/llvm/utils/lit/lit/main.py +++ b/llvm/utils/lit/lit/main.py @@ -28,7 +28,6 @@ class TestingProgressDisplay(object): def __init__(self, opts, numTests, progressBar=None): self.opts = opts self.numTests = numTests - self.current = None self.progressBar = progressBar self.completed = 0 |