summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kruse <llvm@meinersbur.de>2017-07-28 16:57:51 +0000
committerMichael Kruse <llvm@meinersbur.de>2017-07-28 16:57:51 +0000
commit6c8f91b9080feaa9c98fd95fe44ed5a31a2629db (patch)
treeae649b59bf49f9deae9db34b1ad67fb0383de1db
parent34a77780c5ebd39f9236afc12c46868bcb9e1b8b (diff)
downloadbcm5719-llvm-6c8f91b9080feaa9c98fd95fe44ed5a31a2629db.tar.gz
bcm5719-llvm-6c8f91b9080feaa9c98fd95fe44ed5a31a2629db.zip
[Simplify] Fix typo in statistics output. NFC.
llvm-svn: 309402
-rw-r--r--polly/lib/Transform/Simplify.cpp2
-rw-r--r--polly/test/Simplify/emptyaccessdomain.ll2
2 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/Transform/Simplify.cpp b/polly/lib/Transform/Simplify.cpp
index a54b3a4d491..24e4e8a9ad2 100644
--- a/polly/lib/Transform/Simplify.cpp
+++ b/polly/lib/Transform/Simplify.cpp
@@ -415,7 +415,7 @@ private:
<< '\n';
OS.indent(Indent + 4) << "Redundant writes removed: "
<< RedundantWritesRemoved << "\n";
- OS.indent(Indent + 4) << "Access with empty domains removed: "
+ OS.indent(Indent + 4) << "Accesses with empty domains removed: "
<< EmptyPartialAccessesRemoved << "\n";
OS.indent(Indent + 4) << "Dead accesses removed: " << DeadAccessesRemoved
<< '\n';
diff --git a/polly/test/Simplify/emptyaccessdomain.ll b/polly/test/Simplify/emptyaccessdomain.ll
index a5c76534688..fcbf0750812 100644
--- a/polly/test/Simplify/emptyaccessdomain.ll
+++ b/polly/test/Simplify/emptyaccessdomain.ll
@@ -30,7 +30,7 @@ return:
; CHECK: Statistics {
-; CHECK: Access with empty domains removed: 1
+; CHECK: Accesses with empty domains removed: 1
; CHECK: Stmts removed: 1
; CHECK: }
OpenPOWER on IntegriCloud