[llvm] 3e10909 - [NFCI][DebugInfo]: Corrected a Typo.
Sourabh Singh Tomar via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 17 01:21:11 PST 2020
Author: Sourabh Singh Tomar
Date: 2020-02-17T14:50:32+05:30
New Revision: 3e1090922a0b808f424ff424b744752b0d53a3ee
URL: https://github.com/llvm/llvm-project/commit/3e1090922a0b808f424ff424b744752b0d53a3ee
DIFF: https://github.com/llvm/llvm-project/commit/3e1090922a0b808f424ff424b744752b0d53a3ee.diff
LOG: [NFCI][DebugInfo]: Corrected a Typo.
Added:
Modified:
llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
Removed:
################################################################################
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp b/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
index abbea3a868c8..14cb3bc26920 100644
--- a/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
+++ b/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
@@ -171,7 +171,7 @@ Optional<DWARFFormValue> DWARFAbbreviationDeclaration::getAttributeValue(
if (FormValue.extractValue(DebugInfoData, &Offset, U.getFormParams(), &U))
return FormValue;
}
- // March Offset along until we get to the attribute we want.
+ // Match Offset along until we get to the attribute we want.
if (auto FixedSize = Spec.getByteSize(U))
Offset += *FixedSize;
else
More information about the llvm-commits
mailing list