We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76efd65 commit 8b0d172Copy full SHA for 8b0d172
llvm/tools/llvm-debuginfo-analyzer/DebuggerView.cpp
@@ -145,7 +145,6 @@ struct ScopePrinter {
145
}
146
147
static void PrintCallstack(raw_ostream &OS, const LVScope *Scope) {
148
- bool First = true;
149
const LVScope *PrevScope = nullptr;
150
while (Scope) {
151
if (Scope->getIsFunction() || Scope->getIsInlinedFunction()) {
@@ -155,7 +154,6 @@ struct ScopePrinter {
155
154
<< cast<LVScopeFunctionInlined>(PrevScope)->getCallLineNumber();
156
157
OS << "]";
158
- First = false;
159
PrevScope = Scope;
160
161
Scope = Scope->getParentScope();
0 commit comments