You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tests/ui/lint/unaligned_references.stderr
+41-11
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
error[E0793]: reference to packed field is unaligned
2
-
--> $DIR/unaligned_references.rs:25:13
2
+
--> $DIR/unaligned_references.rs:28:13
3
3
|
4
4
LL | &self.x;
5
5
| ^^^^^^^
@@ -9,7 +9,37 @@ LL | &self.x;
9
9
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
10
10
11
11
error[E0793]: reference to packed field is unaligned
12
-
--> $DIR/unaligned_references.rs:34:17
12
+
--> $DIR/unaligned_references.rs:40:24
13
+
|
14
+
LL | println!("{:?}", &*foo.0);
15
+
| ^^^^^
16
+
|
17
+
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
18
+
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
19
+
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
20
+
21
+
error[E0793]: reference to packed field is unaligned
22
+
--> $DIR/unaligned_references.rs:42:24
23
+
|
24
+
LL | println!("{:?}", &*foo.0);
25
+
| ^^^^^
26
+
|
27
+
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
28
+
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
29
+
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
30
+
31
+
error[E0793]: reference to packed field is unaligned
32
+
--> $DIR/unaligned_references.rs:47:24
33
+
|
34
+
LL | println!("{:?}", &*foo.0);
35
+
| ^^^^^
36
+
|
37
+
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
38
+
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
39
+
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
40
+
41
+
error[E0793]: reference to packed field is unaligned
42
+
--> $DIR/unaligned_references.rs:57:17
13
43
|
14
44
LL | let _ = &good.ptr;
15
45
| ^^^^^^^^^
@@ -19,7 +49,7 @@ LL | let _ = &good.ptr;
19
49
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
20
50
21
51
error[E0793]: reference to packed field is unaligned
22
-
--> $DIR/unaligned_references.rs:35:17
52
+
--> $DIR/unaligned_references.rs:58:17
23
53
|
24
54
LL | let _ = &good.data;
25
55
| ^^^^^^^^^^
@@ -29,7 +59,7 @@ LL | let _ = &good.data;
29
59
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
30
60
31
61
error[E0793]: reference to packed field is unaligned
32
-
--> $DIR/unaligned_references.rs:37:17
62
+
--> $DIR/unaligned_references.rs:60:17
33
63
|
34
64
LL | let _ = &good.data as *const _;
35
65
| ^^^^^^^^^^
@@ -39,7 +69,7 @@ LL | let _ = &good.data as *const _;
39
69
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
40
70
41
71
error[E0793]: reference to packed field is unaligned
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
50
80
51
81
error[E0793]: reference to packed field is unaligned
52
-
--> $DIR/unaligned_references.rs:40:17
82
+
--> $DIR/unaligned_references.rs:63:17
53
83
|
54
84
LL | let _ = good.data.clone();
55
85
| ^^^^^^^^^
@@ -59,7 +89,7 @@ LL | let _ = good.data.clone();
59
89
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
60
90
61
91
error[E0793]: reference to packed field is unaligned
62
-
--> $DIR/unaligned_references.rs:42:17
92
+
--> $DIR/unaligned_references.rs:65:17
63
93
|
64
94
LL | let _ = &good.data2[0];
65
95
| ^^^^^^^^^^^^^^
@@ -69,7 +99,7 @@ LL | let _ = &good.data2[0];
69
99
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
70
100
71
101
error[E0793]: reference to packed field is unaligned
72
-
--> $DIR/unaligned_references.rs:51:17
102
+
--> $DIR/unaligned_references.rs:74:17
73
103
|
74
104
LL | let _ = &packed2.x;
75
105
| ^^^^^^^^^^
@@ -79,7 +109,7 @@ LL | let _ = &packed2.x;
79
109
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
80
110
81
111
error[E0793]: reference to packed field is unaligned
82
-
--> $DIR/unaligned_references.rs:90:20
112
+
--> $DIR/unaligned_references.rs:113:20
83
113
|
84
114
LL | let _ref = &m1.1.a;
85
115
| ^^^^^^^
@@ -89,7 +119,7 @@ LL | let _ref = &m1.1.a;
89
119
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
90
120
91
121
error[E0793]: reference to packed field is unaligned
92
-
--> $DIR/unaligned_references.rs:93:20
122
+
--> $DIR/unaligned_references.rs:116:20
93
123
|
94
124
LL | let _ref = &m2.1.a;
95
125
| ^^^^^^^
@@ -98,6 +128,6 @@ LL | let _ref = &m2.1.a;
98
128
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
99
129
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
100
130
101
-
error: aborting due to 10 previous errors
131
+
error: aborting due to 13 previous errors
102
132
103
133
For more information about this error, try `rustc --explain E0793`.
0 commit comments