From 996d9c6e89def2869ca41d98a479beab6be2a6f4 Mon Sep 17 00:00:00 2001 From: Who? Me?! Date: Thu, 2 Jul 2020 17:37:29 -0500 Subject: [PATCH] add stub inline asm chapter (#773) --- src/doc/rustc-dev-guide/src/backend/inline-asm.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/doc/rustc-dev-guide/src/backend/inline-asm.md diff --git a/src/doc/rustc-dev-guide/src/backend/inline-asm.md b/src/doc/rustc-dev-guide/src/backend/inline-asm.md new file mode 100644 index 000000000000..0cae01ef3957 --- /dev/null +++ b/src/doc/rustc-dev-guide/src/backend/inline-asm.md @@ -0,0 +1,4 @@ +# Inline Assembly + +**TODO: You can find more info in +https://github.com/rust-lang/rust/pull/69171#issue-375572066**