mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[basicaa] Minor indentation fix
This commit is contained in:
parent
a36885fad4
commit
ab2305f7e6
@ -150,15 +150,15 @@ private:
|
||||
}
|
||||
void print(raw_ostream &OS) const {
|
||||
OS << "(DecomposedGEP Base=" << Base->getName()
|
||||
<< ", Offset=" << Offset
|
||||
<< ", VarIndices=[";
|
||||
<< ", Offset=" << Offset
|
||||
<< ", VarIndices=[";
|
||||
for (size_t i = 0; i < VarIndices.size(); i++) {
|
||||
if (i != 0)
|
||||
OS << ", ";
|
||||
VarIndices[i].print(OS);
|
||||
if (i != 0)
|
||||
OS << ", ";
|
||||
VarIndices[i].print(OS);
|
||||
}
|
||||
OS << "], HasCompileTimeConstantScale=" << HasCompileTimeConstantScale
|
||||
<< ")";
|
||||
<< ")";
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user