forked from OSchip/llvm-project
[DeLICM] Capitalize parameter name. NFC.
llvm-svn: 295977
This commit is contained in:
parent
82d6725c3a
commit
311ecb00dc
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue