@@ -98,7 +98,7 @@ LL | | sym G,
98
98
LL | | );
99
99
| |_____^
100
100
|
101
- help: consider specifying that the asm block is responsible for returning, if desired
101
+ help: consider specifying that the asm block is responsible for returning from the function
102
102
|
103
103
LL | sym G, options(noreturn),
104
104
| +++++++++++++++++++
@@ -137,7 +137,7 @@ error[E0787]: asm in naked functions must use `noreturn` option
137
137
LL | asm!("");
138
138
| ^^^^^^^^
139
139
|
140
- help: consider specifying that the asm block is responsible for returning, if desired
140
+ help: consider specifying that the asm block is responsible for returning from the function
141
141
|
142
142
LL | asm!("", options(noreturn));
143
143
| +++++++++++++++++++
@@ -148,7 +148,7 @@ error[E0787]: asm in naked functions must use `noreturn` option
148
148
LL | asm!("");
149
149
| ^^^^^^^^
150
150
|
151
- help: consider specifying that the asm block is responsible for returning, if desired
151
+ help: consider specifying that the asm block is responsible for returning from the function
152
152
|
153
153
LL | asm!("", options(noreturn));
154
154
| +++++++++++++++++++
@@ -159,7 +159,7 @@ error[E0787]: asm in naked functions must use `noreturn` option
159
159
LL | asm!("");
160
160
| ^^^^^^^^
161
161
|
162
- help: consider specifying that the asm block is responsible for returning, if desired
162
+ help: consider specifying that the asm block is responsible for returning from the function
163
163
|
164
164
LL | asm!("", options(noreturn));
165
165
| +++++++++++++++++++
@@ -219,7 +219,7 @@ error[E0787]: asm in naked functions must use `noreturn` option
219
219
LL | asm!("", options(readonly, nostack), options(pure));
220
220
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
221
221
|
222
- help: consider specifying that the asm block is responsible for returning, if desired
222
+ help: consider specifying that the asm block is responsible for returning from the function
223
223
|
224
224
LL | asm!("", options(noreturn), options(readonly, nostack), options(pure));
225
225
| +++++++++++++++++++
0 commit comments