summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2013-10-14 13:19:24 -0700
committerEric Anholt <eric@anholt.net>2013-10-14 13:24:17 -0700
commitccfaca5d1f641d7909cf98fd2e065454acc67851 (patch)
tree09abadc7b4e5cab931b9ed71725ef36753aee425
parent4679fe1c5f92e80fcd1bff29be25f15844147f1e (diff)
Summarize the count of shaders lost/gained.
-rwxr-xr-xreport.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/report.py b/report.py
index 652e89a..084309d 100755
--- a/report.py
+++ b/report.py
@@ -132,6 +132,7 @@ def main():
print("total instructions in shared programs: " + change(total_before, total_after))
print("instructions in affected programs: " + change(affected_before, affected_after))
-
+ print("GAINED: {0}".format(len(gained)))
+ print("LOST: {0}".format(len(lost)))
if __name__ == "__main__":
main()