diff options
Diffstat (limited to 'llvm/test/Transforms/ConstProp')
-rw-r--r-- | llvm/test/Transforms/ConstProp/2002-05-03-NotOperator.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/ConstProp/basictest.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/ConstProp/logicaltest.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/ConstProp/phi.ll | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Transforms/ConstProp/2002-05-03-NotOperator.ll b/llvm/test/Transforms/ConstProp/2002-05-03-NotOperator.ll index d9cd67406b0..b957220aa9c 100644 --- a/llvm/test/Transforms/ConstProp/2002-05-03-NotOperator.ll +++ b/llvm/test/Transforms/ConstProp/2002-05-03-NotOperator.ll @@ -1,4 +1,4 @@ -; This bug has to do with the fact that constant propogation was implemented in +; This bug has to do with the fact that constant propagation was implemented in ; terms of _logical_ not (! in C) instead of _bitwise_ not (~ in C). This was ; due to a spec change. diff --git a/llvm/test/Transforms/ConstProp/basictest.ll b/llvm/test/Transforms/ConstProp/basictest.ll index df57fb6870b..d0d0a5bb335 100644 --- a/llvm/test/Transforms/ConstProp/basictest.ll +++ b/llvm/test/Transforms/ConstProp/basictest.ll @@ -1,6 +1,6 @@ ; RUN: opt < %s -constprop -die -S | FileCheck %s -; This is a basic sanity check for constant propogation. The add instruction +; This is a basic sanity check for constant propagation. The add instruction ; should be eliminated. define i32 @test1(i1 %B) { br i1 %B, label %BB1, label %BB2 diff --git a/llvm/test/Transforms/ConstProp/logicaltest.ll b/llvm/test/Transforms/ConstProp/logicaltest.ll index c74296aa2c0..abd3275a4f7 100644 --- a/llvm/test/Transforms/ConstProp/logicaltest.ll +++ b/llvm/test/Transforms/ConstProp/logicaltest.ll @@ -1,4 +1,4 @@ -; Ensure constant propogation of logical instructions is working correctly. +; Ensure constant propagation of logical instructions is working correctly. ; RUN: opt < %s -constprop -die -S | FileCheck %s ; CHECK-NOT: {{and|or|xor}} diff --git a/llvm/test/Transforms/ConstProp/phi.ll b/llvm/test/Transforms/ConstProp/phi.ll index 3d9e284457c..c65d34cc933 100644 --- a/llvm/test/Transforms/ConstProp/phi.ll +++ b/llvm/test/Transforms/ConstProp/phi.ll @@ -1,4 +1,4 @@ -; This is a basic sanity check for constant propogation. The add instruction +; This is a basic sanity check for constant propagation. The add instruction ; should be eliminated. ; RUN: opt < %s -constprop -die -S | not grep phi |