We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ab9fd8 commit 72bad8fCopy full SHA for 72bad8f
src/probestack.rs
@@ -48,6 +48,8 @@
48
#![cfg(not(feature = "no-asm"))]
49
// We only define stack probing for these architectures today.
50
#![cfg(any(target_arch = "x86_64", target_arch = "x86"))]
51
+// We need to add .att_syntax for bootstraping the new global_asm!
52
+#![allow(unknown_lints, bad_asm_style)]
53
54
extern "C" {
55
pub fn __rust_probestack();
@@ -63,6 +65,7 @@ macro_rules! define_rust_probestack {
63
65
($body: expr) => {
64
66
concat!(
67
"
68
+ .att_syntax
69
.pushsection .text.__rust_probestack
70
.globl __rust_probestack
71
.type __rust_probestack, @function
0 commit comments