@@ -98,7 +98,7 @@ LL | | sym G,
9898LL | | );
9999 | |_____^
100100 |
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
102102 |
103103LL | sym G, options(noreturn),
104104 | +++++++++++++++++++
@@ -137,7 +137,7 @@ error[E0787]: asm in naked functions must use `noreturn` option
137137LL | asm!("");
138138 | ^^^^^^^^
139139 |
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
141141 |
142142LL | asm!("", options(noreturn));
143143 | +++++++++++++++++++
@@ -148,7 +148,7 @@ error[E0787]: asm in naked functions must use `noreturn` option
148148LL | asm!("");
149149 | ^^^^^^^^
150150 |
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
152152 |
153153LL | asm!("", options(noreturn));
154154 | +++++++++++++++++++
@@ -159,7 +159,7 @@ error[E0787]: asm in naked functions must use `noreturn` option
159159LL | asm!("");
160160 | ^^^^^^^^
161161 |
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
163163 |
164164LL | asm!("", options(noreturn));
165165 | +++++++++++++++++++
@@ -219,7 +219,7 @@ error[E0787]: asm in naked functions must use `noreturn` option
219219LL | asm!("", options(readonly, nostack), options(pure));
220220 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
221221 |
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
223223 |
224224LL | asm!("", options(noreturn), options(readonly, nostack), options(pure));
225225 | +++++++++++++++++++
0 commit comments