[polly] r309402 - [Simplify] Fix typo in statistics output. NFC.
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 28 09:57:52 PDT 2017
Author: meinersbur
Date: Fri Jul 28 09:57:51 2017
New Revision: 309402
URL: http://llvm.org/viewvc/llvm-project?rev=309402&view=rev
Log:
[Simplify] Fix typo in statistics output. NFC.
Modified:
polly/trunk/lib/Transform/Simplify.cpp
polly/trunk/test/Simplify/emptyaccessdomain.ll
Modified: polly/trunk/lib/Transform/Simplify.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Transform/Simplify.cpp?rev=309402&r1=309401&r2=309402&view=diff
==============================================================================
--- polly/trunk/lib/Transform/Simplify.cpp (original)
+++ polly/trunk/lib/Transform/Simplify.cpp Fri Jul 28 09:57:51 2017
@@ -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';
Modified: polly/trunk/test/Simplify/emptyaccessdomain.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/Simplify/emptyaccessdomain.ll?rev=309402&r1=309401&r2=309402&view=diff
==============================================================================
--- polly/trunk/test/Simplify/emptyaccessdomain.ll (original)
+++ polly/trunk/test/Simplify/emptyaccessdomain.ll Fri Jul 28 09:57:51 2017
@@ -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: }
More information about the llvm-commits
mailing list