diff options
Diffstat (limited to 'test/Transforms/InstCombine/select.ll')
-rw-r--r-- | test/Transforms/InstCombine/select.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/select.ll b/test/Transforms/InstCombine/select.ll index c26380eaa71be..0f94235982b99 100644 --- a/test/Transforms/InstCombine/select.ll +++ b/test/Transforms/InstCombine/select.ll @@ -926,7 +926,7 @@ while.body: define i32 @test76(i1 %flag, i32* %x) { ; The load here must not be speculated around the select. One side of the -; select is trivially dereferencable but may have a lower alignment than the +; select is trivially dereferenceable but may have a lower alignment than the ; load does. ; CHECK-LABEL: @test76( ; CHECK: store i32 0, i32* %x @@ -943,7 +943,7 @@ declare void @scribble_on_i32(i32*) define i32 @test77(i1 %flag, i32* %x) { ; The load here must not be speculated around the select. One side of the -; select is trivially dereferencable but may have a lower alignment than the +; select is trivially dereferenceable but may have a lower alignment than the ; load does. ; CHECK-LABEL: @test77( ; CHECK: %[[A:.*]] = alloca i32, align 1 |