summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/asm-foreign2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/asm-foreign2.rs')
-rw-r--r--src/test/rustdoc/asm-foreign2.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/rustdoc/asm-foreign2.rs b/src/test/rustdoc/asm-foreign2.rs
deleted file mode 100644
index 87306901e..000000000
--- a/src/test/rustdoc/asm-foreign2.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// only-aarch64
-// Make sure rustdoc accepts options(att_syntax) asm! on non-x86 targets.
-
-use std::arch::asm;
-
-// @has asm_foreign2/fn.x86.html
-pub unsafe fn x86(x: i64) -> i64 {
- let y;
- asm!("movq {}, {}", in(reg) x, out(reg) y, options(att_syntax));
- y
-}