Skip to content

Commit e0a5fef

Browse files
committed
fix filecheck typos in tests
1 parent 00426d6 commit e0a5fef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ pub static A1: fn(BigCell) = shared_borrow;
100100
//
101101
// CHECK-LABEL: ; deduced_param_attrs::raw_const_borrow
102102
// CHECK-NOT: readonly
103-
// CHECK-NEXT : %a)
103+
// CHECK-NEXT: %a)
104104
#[inline(never)]
105105
pub fn raw_const_borrow(a: Big) {
106106
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)