]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/intrinsics/simd-select-bitmask-invalid.stderr
Rollup merge of #101642 - SkiFire13:fix-inplace-collection-leak, r=the8472
[rust.git] / src / tools / miri / tests / fail / intrinsics / simd-select-bitmask-invalid.stderr
1 error: Undefined Behavior: a SIMD bitmask less than 8 bits long must be filled with 0s for the remaining bits
2   --> $DIR/simd-select-bitmask-invalid.rs:LL:CC
3    |
4 LL |         simd_select_bitmask(0b11111111u8, x, x);
5    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ a SIMD bitmask less than 8 bits long must be filled with 0s for the remaining bits
6    |
7    = help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
8    = help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
9    = note: BACKTRACE:
10    = note: inside `main` at $DIR/simd-select-bitmask-invalid.rs:LL:CC
11
12 note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
13
14 error: aborting due to previous error
15