@@ -2,7 +2,7 @@ note: tracking was triggered
2
2
--> $DIR/alloc-access-tracking.rs:LL:CC
3
3
|
4
4
LL | let ptr = miri_alloc(123, 1);
5
- | ^^^^^^^^^^^^^^^^^^ created Miri bare-metal heap allocation of 123 bytes (alignment ALIGN bytes) with id 17
5
+ | ^^^^^^^^^^^^^^^^^^ created Miri bare-metal heap allocation of 123 bytes (alignment ALIGN bytes) with id 18
6
6
|
7
7
= note: BACKTRACE:
8
8
= note: inside `start` at $DIR/alloc-access-tracking.rs:LL:CC
@@ -11,7 +11,7 @@ note: tracking was triggered
11
11
--> $DIR/alloc-access-tracking.rs:LL:CC
12
12
|
13
13
LL | *ptr = 42; // Crucially, only a write is printed here, no read!
14
- | ^^^^^^^^^ write access to allocation with id 17
14
+ | ^^^^^^^^^ write access to allocation with id 18
15
15
|
16
16
= note: BACKTRACE:
17
17
= note: inside `start` at $DIR/alloc-access-tracking.rs:LL:CC
@@ -20,7 +20,7 @@ note: tracking was triggered
20
20
--> $DIR/alloc-access-tracking.rs:LL:CC
21
21
|
22
22
LL | assert_eq!(*ptr, 42);
23
- | ^^^^^^^^^^^^^^^^^^^^ read access to allocation with id 17
23
+ | ^^^^^^^^^^^^^^^^^^^^ read access to allocation with id 18
24
24
|
25
25
= note: BACKTRACE:
26
26
= note: inside `start` at RUSTLIB/core/src/macros/mod.rs:LL:CC
@@ -30,7 +30,7 @@ note: tracking was triggered
30
30
--> $DIR/alloc-access-tracking.rs:LL:CC
31
31
|
32
32
LL | miri_dealloc(ptr, 123, 1);
33
- | ^^^^^^^^^^^^^^^^^^^^^^^^^ freed allocation with id 17
33
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^ freed allocation with id 18
34
34
|
35
35
= note: BACKTRACE:
36
36
= note: inside `start` at $DIR/alloc-access-tracking.rs:LL:CC
0 commit comments