Skip to content

Commit 3af353d

Browse files
authored
Unrolled build for #148780
Rollup merge of #148780 - klensy:filecheck-typo, r=jieyouxu fix filecheck typos in tests Fixes few filecheck annotation typos in tests.
2 parents 11339a0 + ecb0d3b commit 3af353d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tests/codegen-llvm/deduced-param-attrs.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,9 @@ pub static A1: fn(BigCell) = shared_borrow;
9999
// The parameter can be mutated through a raw const borrow.
100100
//
101101
// CHECK-LABEL: ; deduced_param_attrs::raw_const_borrow
102+
// CHECK-NEXT: ;
102103
// CHECK-NOT: readonly
103-
// CHECK-NEXT : %a)
104+
// CHECK-NEXT: %a)
104105
#[inline(never)]
105106
pub fn raw_const_borrow(a: Big) {
106107
black_box(&raw const a);

tests/mir-opt/gvn_loop.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ fn loop_deref_mut(val: &mut Value) -> Value {
1616
// CHECK-LABEL: fn loop_deref_mut(
1717
// CHECK: [[VAL_REF:_.*]] = get::<Value>(
1818
// CHECK: [[V:_.*]] = copy (((*[[VAL_REF]]) as V0).0: i32);
19-
// CEHCK-NOT: copy (*[[VAL_REF]]);
19+
// CHECK-NOT: copy (*[[VAL_REF]]);
2020
// CHECK: [[RET:_*]] = Value::V0(copy [[V]]);
21-
// CEHCK-NOT: copy (*[[VAL_REF]]);
21+
// CHECK-NOT: copy (*[[VAL_REF]]);
2222
// CHECK: _0 = move [[RET]]
2323
let val_alias: &Value = get(val);
2424
let mut stop = false;

0 commit comments

Comments
 (0)