about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorFolkert de Vries <folkert@folkertdev.nl>2024-12-18 22:05:27 +0100
committerFolkert de Vries <folkert@folkertdev.nl>2025-04-20 11:18:38 +0200
commitdf8a3d5f1d363c19e2fc82060aabb80a9cd94015 (patch)
tree7da3f224f99a98fed9cb5f179be3e8f7f7d3fbac /src/doc
parent49e5e4e3a5610c240a717cb99003a5d5d3356679 (diff)
downloadrust-df8a3d5f1d363c19e2fc82060aabb80a9cd94015.tar.gz
rust-df8a3d5f1d363c19e2fc82060aabb80a9cd94015.zip
stabilize `naked_functions`
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/unstable-book/src/compiler-flags/sanitizer.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/compiler-flags/sanitizer.md b/src/doc/unstable-book/src/compiler-flags/sanitizer.md
index f2e1bb80cb2..2f9d4d22e5a 100644
--- a/src/doc/unstable-book/src/compiler-flags/sanitizer.md
+++ b/src/doc/unstable-book/src/compiler-flags/sanitizer.md
@@ -245,8 +245,6 @@ See the [Clang ControlFlowIntegrity documentation][clang-cfi] for more details.
 ## Example 1: Redirecting control flow using an indirect branch/call to an invalid destination
 
 ```rust,ignore (making doc tests pass cross-platform is hard)
-#![feature(naked_functions)]
-
 use std::arch::naked_asm;
 use std::mem;