Skip to content

Commit b5749f4

Browse files
committed
rustup
1 parent ad3a762 commit b5749f4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a7468c60f8dbf5feb23ad840b174d7e57113a846
1+
e7a9c1141698bc4557b9da3d3fce2bf75339427f

tests/fail/intrinsics/simd-float-to-int.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | implement! { f32 }
77
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
88
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
99
= note: backtrace:
10-
= note: inside `core::core_simd::round::<impl std::simd::Simd<f32, 2_usize>>::to_int_unchecked::<i32>` at RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/round.rs:LL:CC
10+
= note: inside `core::core_simd::round::<impl std::simd::Simd<f32, 2>>::to_int_unchecked::<i32>` at RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/round.rs:LL:CC
1111
note: inside `main` at $DIR/simd-float-to-int.rs:LL:CC
1212
--> $DIR/simd-float-to-int.rs:LL:CC
1313
|

tests/fail/intrinsics/simd-gather.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | unsafe { intrinsics::simd_gather(or, ptrs, enable.to_int()) }
77
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
88
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
99
= note: backtrace:
10-
= note: inside `std::simd::Simd::<i8, 4_usize>::gather_select_unchecked` at RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/vector.rs:LL:CC
10+
= note: inside `std::simd::Simd::<i8, 4>::gather_select_unchecked` at RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/vector.rs:LL:CC
1111
note: inside `main` at $DIR/simd-gather.rs:LL:CC
1212
--> $DIR/simd-gather.rs:LL:CC
1313
|

tests/fail/intrinsics/simd-scatter.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | intrinsics::simd_scatter(self, ptrs, enable.to_int())
77
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
88
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
99
= note: backtrace:
10-
= note: inside `std::simd::Simd::<i8, 4_usize>::scatter_select_unchecked` at RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/vector.rs:LL:CC
10+
= note: inside `std::simd::Simd::<i8, 4>::scatter_select_unchecked` at RUSTLIB/core/src/../../portable-simd/crates/core_simd/src/vector.rs:LL:CC
1111
note: inside `main` at $DIR/simd-scatter.rs:LL:CC
1212
--> $DIR/simd-scatter.rs:LL:CC
1313
|

tests/pass/issues/issue-miri-2123.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ fn main() {
1616
let x = &orig as &dyn Foo;
1717
let (ptr, meta) = (x as *const dyn Foo).to_raw_parts();
1818
let ptr = uwu(ptr, mem::transmute(meta));
19-
mem::size_of_val_raw(ptr);
19+
let _size = mem::size_of_val_raw(ptr);
2020
}
2121
}

0 commit comments

Comments
 (0)