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 cefadf0 commit 8cf5cf0Copy full SHA for 8cf5cf0
src/libstd/sys/common/unwind/mod.rs
@@ -81,8 +81,13 @@ use sys_common::mutex::Mutex;
81
#[path = "seh.rs"] #[doc(hidden)]
82
pub mod imp;
83
84
+// SNAP: remove this and remove not(stage0) from the next block
85
+#[cfg(all(stage0, windows, target_arch = "x86_64"))]
86
+#[path = "seh.rs"] #[doc(hidden)]
87
+pub mod imp;
88
+
89
// x86_64-pc-windows-*
-#[cfg(all(windows, target_arch = "x86_64"))]
90
+#[cfg(all(not(stage0), windows, target_arch = "x86_64"))]
91
#[path = "seh64_gnu.rs"] #[doc(hidden)]
92
93
0 commit comments