]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issue-39827.stderr
Fixes issue 39827: ICE in volatile_store intrinsic
[rust.git] / src / test / ui / issue-39827.stderr
1 warning: suspicious monomorphization of `volatile_copy_memory` intrinsic
2   --> $DIR/issue-39827.rs:26:9
3    |
4 26 |         volatile_copy_memory(&mut dst_pair, &dst_pair, COUNT_0);
5    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: 'volatile_copy_memory' was specialized with type '(i32, i32)', number of elements is 0
8
9 warning: suspicious monomorphization of `volatile_copy_nonoverlapping_memory` intrinsic
10   --> $DIR/issue-39827.rs:27:9
11    |
12 27 |         volatile_copy_nonoverlapping_memory(&mut dst_pair, &src_pair, 0);
13    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14    |
15    = note: 'volatile_copy_nonoverlapping_memory' was specialized with type '(i32, i32)', number of elements is 0
16
17 warning: suspicious monomorphization of `volatile_copy_memory` intrinsic
18   --> $DIR/issue-39827.rs:28:9
19    |
20 28 |         volatile_copy_memory(&mut dst_empty, &dst_empty, 100);
21    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22    |
23    = note: 'volatile_copy_memory' was specialized with type '()', number of elements is 100
24
25 warning: suspicious monomorphization of `volatile_copy_nonoverlapping_memory` intrinsic
26   --> $DIR/issue-39827.rs:29:9
27    |
28 29 | /         volatile_copy_nonoverlapping_memory(&mut dst_empty, &src_empty,
29 30 | |                                             COUNT_100);
30    | |______________________________________________________^
31    |
32    = note: 'volatile_copy_nonoverlapping_memory' was specialized with type '()', number of elements is 100
33
34 warning: suspicious monomorphization of `volatile_set_memory` intrinsic
35   --> $DIR/issue-39827.rs:31:9
36    |
37 31 |         volatile_set_memory(&mut dst_empty, 0, COUNT_100);
38    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39    |
40    = note: 'volatile_set_memory' was specialized with type '()', number of elements is 100
41
42 warning: suspicious monomorphization of `volatile_set_memory` intrinsic
43   --> $DIR/issue-39827.rs:32:9
44    |
45 32 |         volatile_set_memory(&mut dst_pair, 0, COUNT_0);
46    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
47    |
48    = note: 'volatile_set_memory' was specialized with type '(i32, i32)', number of elements is 0
49
50 warning: suspicious monomorphization of `volatile_store` intrinsic
51   --> $DIR/issue-39827.rs:33:9
52    |
53 33 |         volatile_store(&mut dst_empty, ());
54    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
55    |
56    = note: 'volatile_store' was specialized with zero-sized type '()'
57
58 warning: suspicious monomorphization of `volatile_store` intrinsic
59   --> $DIR/issue-39827.rs:34:9
60    |
61 34 |         volatile_store(&mut dst_empty, src_empty);
62    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
63    |
64    = note: 'volatile_store' was specialized with zero-sized type '()'
65
66 warning: suspicious monomorphization of `volatile_load` intrinsic
67   --> $DIR/issue-39827.rs:35:9
68    |
69 35 |         volatile_load(&src_empty);
70    |         ^^^^^^^^^^^^^^^^^^^^^^^^^
71    |
72    = note: 'volatile_load' was specialized with zero-sized type '()'
73