Skip to content

Commit f855975

Browse files
authored
[llvm-project] Fix typo "propogate" (llvm#114795)
1 parent a58c3d3 commit f855975

22 files changed

+31
-31
lines changed

clang/test/Analysis/malloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ void testConstEscapeThroughAnotherField(void) {
18291829
} // no-warning
18301830

18311831
// PR15623
1832-
int testNoCheckerDataPropogationFromLogicalOpOperandToOpResult(void) {
1832+
int testNoCheckerDataPropagationFromLogicalOpOperandToOpResult(void) {
18331833
char *param = malloc(10);
18341834
char *value = malloc(10);
18351835
int ok = (param && value);

lld/test/Unit/lit.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
config.environment["PATH"] = os.path.pathsep.join((
3939
config.shlibdir, config.environment["PATH"]))
4040

41-
# Win32 may use %SYSTEMDRIVE% during file system shell operations, so propogate.
41+
# Win32 may use %SYSTEMDRIVE% during file system shell operations, so propagate.
4242
if sys.platform == "win32" and "SYSTEMDRIVE" in os.environ:
4343
config.environment["SYSTEMDRIVE"] = os.environ["SYSTEMDRIVE"]
4444

llvm/docs/HistoricalNotes/2001-05-18-ExceptionHandling.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ void TestFunction(...) {
7070
// execution continues after the try block: the exception is consumed
7171
} catch (double) {
7272
...double stuff...
73-
throw; // Exception is propogated
73+
throw; // Exception is propagated
7474
}
7575
}
7676

@@ -83,14 +83,14 @@ Func:
8383
%b = alloca B // minor detail for this example
8484
B::B(%b)
8585

86-
call foo() with fooCleanup // An exception in foo is propogated to fooCleanup
87-
call bar() with barCleanup // An exception in bar is propogated to barCleanup
86+
call foo() with fooCleanup // An exception in foo is propagated to fooCleanup
87+
call bar() with barCleanup // An exception in bar is propagated to barCleanup
8888

8989
%c = alloca C
9090
C::C(c)
9191
%d = alloca D
9292
D::D(d)
93-
call baz() with bazCleanup // An exception in baz is propogated to bazCleanup
93+
call baz() with bazCleanup // An exception in baz is propagated to bazCleanup
9494
d->~D();
9595
EndTry: // This label corresponds to the end of the try block
9696
c->~C() // These could also throw, these are also ignored

llvm/docs/HistoricalNotes/2002-05-12-InstListChange.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ linear search of the basic block the instruction is contained in... just
1818
to insert an instruction before another instruction, or to delete an
1919
instruction! This complicates algorithms that should be very simple (like
2020
simple constant propagation), because they aren't actually sparse anymore,
21-
they have to traverse basic blocks to remove constant propogated
21+
they have to traverse basic blocks to remove constant propagated
2222
instructions.
2323

2424
Additionally, adding or removing instructions to a basic block

llvm/lib/Transforms/IPO/AttributorAttributes.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9240,12 +9240,12 @@ struct AAValueConstantRangeReturned
92409240
: AAReturnedFromReturnedValues<AAValueConstantRange,
92419241
AAValueConstantRangeImpl,
92429242
AAValueConstantRangeImpl::StateType,
9243-
/* PropogateCallBaseContext */ true> {
9243+
/* PropagateCallBaseContext */ true> {
92449244
using Base =
92459245
AAReturnedFromReturnedValues<AAValueConstantRange,
92469246
AAValueConstantRangeImpl,
92479247
AAValueConstantRangeImpl::StateType,
9248-
/* PropogateCallBaseContext */ true>;
9248+
/* PropagateCallBaseContext */ true>;
92499249
AAValueConstantRangeReturned(const IRPosition &IRP, Attributor &A)
92509250
: Base(IRP, A) {}
92519251

llvm/lib/Transforms/IPO/IROutliner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,7 @@ CallInst *replaceCalledFunction(Module &M, OutlinableRegion &Region) {
15131513
// Transfer any debug information.
15141514
Call->setDebugLoc(Region.Call->getDebugLoc());
15151515
// Since our output may determine which branch we go to, we make sure to
1516-
// propogate this new call value through the module.
1516+
// propagate this new call value through the module.
15171517
OldCall->replaceAllUsesWith(Call);
15181518

15191519
// Remove the old instruction.

llvm/test/CodeGen/AArch64/i128-fast-isel-fallback.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ define void @test1() {
66
call void @test2(i128 %1)
77
ret void
88

9-
; The i128 is 0 so the we can test to make sure it is propogated into the x
9+
; The i128 is 0 so the we can test to make sure it is propagated into the x
1010
; registers that make up the i128 pair
1111

1212
; CHECK: mov x0, xzr

llvm/test/CodeGen/AMDGPU/waitcnt-loop-single-basic-block.mir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# RUN: llc -mtriple=amdgcn -mcpu=gfx900 -run-pass=si-insert-waitcnts -verify-machineinstrs %s -o - | FileCheck -check-prefix=GCN %s
22

3-
# Check that the waitcnt propogates info in the case of a single basic block loop
3+
# Check that the waitcnt propagates info in the case of a single basic block loop
44

55
# GCN-LABEL: waitcnt-loop-single-basic-block
66
# GCN: bb.0

llvm/test/DebugInfo/MIR/X86/livedebugvalues_basic_diamond.mir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--- |
22
; RUN: llc %s -march=x86-64 -run-pass=livedebugvalues -o - | FileCheck %s -implicit-check-not=DBG_VALUE
33

4-
; Check that DBG_VALUE instructions are propogated through a CFG containing
4+
; Check that DBG_VALUE instructions are propagated through a CFG containing
55
; a diamond that doesn't move or clobber their locations.
66

77
; CHECK-LABEL: bb.0.entry:

llvm/test/DebugInfo/MIR/X86/livedebugvalues_basic_diamond_match_clobber.mir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--- |
22
; RUN: llc %s -march=x86-64 -run-pass=livedebugvalues -o - | FileCheck %s -implicit-check-not=DBG_VALUE
33

4-
; Check that DBG_VALUE instructions are only propogated into the top blocks of
4+
; Check that DBG_VALUE instructions are only propagated into the top blocks of
55
; a diamond when the location is clobbered and not into the successor block.
66

77
; CHECK-LABEL: bb.0.entry:

0 commit comments

Comments
 (0)