[polly] r295977 - [DeLICM] Capitalize parameter name. NFC.

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 23 06:51:46 PST 2017


Author: meinersbur
Date: Thu Feb 23 08:51:45 2017
New Revision: 295977

URL: http://llvm.org/viewvc/llvm-project?rev=295977&view=rev
Log:
[DeLICM] Capitalize parameter name. NFC.

Modified:
    polly/trunk/lib/Transform/DeLICM.cpp

Modified: polly/trunk/lib/Transform/DeLICM.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Transform/DeLICM.cpp?rev=295977&r1=295976&r2=295977&view=diff
==============================================================================
--- polly/trunk/lib/Transform/DeLICM.cpp (original)
+++ polly/trunk/lib/Transform/DeLICM.cpp Thu Feb 23 08:51:45 2017
@@ -1647,13 +1647,13 @@ public:
   }
 
   /// Dump the internal information about a performed DeLICM to @p OS.
-  void print(llvm::raw_ostream &OS, int indent = 0) {
+  void print(llvm::raw_ostream &OS, int Indent = 0) {
     if (!Zone.isUsable()) {
       OS << "Zone not computed\n";
       return;
     }
 
-    printAccesses(OS, indent);
+    printAccesses(OS, Indent);
   }
 };
 




More information about the llvm-commits mailing list