File tree Expand file tree Collapse file tree 1 file changed +17
-18
lines changed
src/doc/unstable-book/src/compiler-flags Expand file tree Collapse file tree 1 file changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -244,10 +244,11 @@ See the [Clang ControlFlowIntegrity documentation][clang-cfi] for more details.
244244
245245# # Example 1: Redirecting control flow using an indirect branch/call to an invalid destination
246246
247- ` ` ` rust,ignore (making doc tests pass cross-platform is hard)
247+ ` ` ` rust
248248#! [feature(naked_functions)]
249249
250- use std::arch::asm;
250+ # #[cfg(target_arch = "x86_64")] mod m {
251+ use std::arch::naked_asm;
251252use std::mem;
252253
253254fn add_one(x: i32) -> i32 {
@@ -258,22 +259,19 @@ fn add_one(x: i32) -> i32 {
258259pub extern " C" fn add_two(x: i32) {
259260 // x + 2 preceded by a landing pad/nop block
260261 unsafe {
261- asm! (
262- "
263- nop
264- nop
265- nop
266- nop
267- nop
268- nop
269- nop
270- nop
271- nop
272- lea eax, [rdi+2]
273- ret
274- " ,
275- options(noreturn)
276- );
262+ naked_asm! (
263+ " nop" ,
264+ " nop" ,
265+ " nop" ,
266+ " nop" ,
267+ " nop" ,
268+ " nop" ,
269+ " nop" ,
270+ " nop" ,
271+ " nop" ,
272+ " lea eax, [rdi+2]" ,
273+ " ret" ,
274+ )
277275 }
278276}
279277
@@ -297,6 +295,7 @@ fn main() {
297295
298296 println! (" The next answer is: {}" , next_answer);
299297}
298+ # }
300299` ` `
301300Fig. 1. Redirecting control flow using an indirect branch/call to an invalid
302301destination (i.e., within the body of the function).
You can’t perform that action at this time.
0 commit comments