Skip to content

Commit 6cb1847

Browse files
committed
Fix typo "necessarilly"
1 parent 310351d commit 6cb1847

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

llvm/include/llvm/CodeGen/LiveInterval.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ namespace llvm {
424424
}
425425

426426
/// getVNInfoBefore - Return the VNInfo that is live up to but not
427-
/// necessarilly including Idx, or NULL. Use this to find the reaching def
427+
/// necessarily including Idx, or NULL. Use this to find the reaching def
428428
/// used by an instruction at this SlotIndex position.
429429
VNInfo *getVNInfoBefore(SlotIndex Idx) const {
430430
const_iterator I = FindSegmentContaining(Idx.getPrevSlot());

llvm/lib/CodeGen/ScheduleDAGInstrs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1210,7 +1210,7 @@ std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
12101210
return s;
12111211
}
12121212

1213-
/// Return the basic block label. It is not necessarilly unique because a block
1213+
/// Return the basic block label. It is not necessarily unique because a block
12141214
/// contains multiple scheduling regions. But it is fine for visualization.
12151215
std::string ScheduleDAGInstrs::getDAGName() const {
12161216
return "dag." + BB->getFullName();

llvm/lib/MC/MCParser/AsmParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
10461046
// Check to see that all assembler local symbols were actually defined.
10471047
// Targets that don't do subsections via symbols may not want this, though,
10481048
// so conservatively exclude them. Only do this if we're finalizing, though,
1049-
// as otherwise we won't necessarilly have seen everything yet.
1049+
// as otherwise we won't necessarily have seen everything yet.
10501050
if (!NoFinalize) {
10511051
if (MAI.hasSubsectionsViaSymbols()) {
10521052
for (const auto &TableEntry : getContext().getSymbols()) {

llvm/lib/MC/MCParser/MasmParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,7 @@ bool MasmParser::Run(bool NoInitialTextSection, bool NoFinalize) {
14151415
// Check to see that all assembler local symbols were actually defined.
14161416
// Targets that don't do subsections via symbols may not want this, though,
14171417
// so conservatively exclude them. Only do this if we're finalizing, though,
1418-
// as otherwise we won't necessarilly have seen everything yet.
1418+
// as otherwise we won't necessarily have seen everything yet.
14191419
if (!NoFinalize) {
14201420
if (MAI.hasSubsectionsViaSymbols()) {
14211421
for (const auto &TableEntry : getContext().getSymbols()) {

0 commit comments

Comments
 (0)