Skip to content

Commit 1857edb

Browse files
committed
Fix typoed variable name.
NFCI. llvm-svn: 357138
1 parent 923ff55 commit 1857edb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/tools/llvm-objdump/llvm-objdump.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -546,12 +546,12 @@ void SourcePrinter::printSourceLine(raw_ostream &OS,
546546
if (!Symbolizer)
547547
return;
548548
DILineInfo LineInfo = DILineInfo();
549-
auto ExpectecLineInfo =
549+
auto ExpectedLineInfo =
550550
Symbolizer->symbolizeCode(Obj->getFileName(), Address);
551-
if (!ExpectecLineInfo)
552-
consumeError(ExpectecLineInfo.takeError());
551+
if (!ExpectedLineInfo)
552+
consumeError(ExpectedLineInfo.takeError());
553553
else
554-
LineInfo = *ExpectecLineInfo;
554+
LineInfo = *ExpectedLineInfo;
555555

556556
if ((LineInfo.FileName == "<invalid>") || OldLineInfo.Line == LineInfo.Line ||
557557
LineInfo.Line == 0)

0 commit comments

Comments
 (0)