[DeLICM] Capitalize parameter name. NFC.

llvm-svn: 295977
This commit is contained in:
Michael Kruse 2017-02-23 14:51:45 +00:00
parent 82d6725c3a
commit 311ecb00dc
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
};