Skip to content

Commit 8b0d172

Browse files
committed
Fixed linux build failure by deleting a variable that's not actually used
1 parent 76efd65 commit 8b0d172

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

llvm/tools/llvm-debuginfo-analyzer/DebuggerView.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ struct ScopePrinter {
145145
}
146146

147147
static void PrintCallstack(raw_ostream &OS, const LVScope *Scope) {
148-
bool First = true;
149148
const LVScope *PrevScope = nullptr;
150149
while (Scope) {
151150
if (Scope->getIsFunction() || Scope->getIsInlinedFunction()) {
@@ -155,7 +154,6 @@ struct ScopePrinter {
155154
<< cast<LVScopeFunctionInlined>(PrevScope)->getCallLineNumber();
156155
}
157156
OS << "]";
158-
First = false;
159157
PrevScope = Scope;
160158
}
161159
Scope = Scope->getParentScope();

0 commit comments

Comments
 (0)