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 a7f2a78Copy full SHA for a7f2a78
src/libstd/sys/common/unwind/mod.rs
@@ -81,8 +81,18 @@ use sys_common::mutex::Mutex;
81
#[path = "seh.rs"] #[doc(hidden)]
82
pub mod imp;
83
84
+// SNAP: i686-pc-windows-gnu
85
+#[cfg(all(stage0, windows, target_arch = "x86_64", target_env = "gnu"))]
86
+#[path = "seh64_gnu.rs"] #[doc(hidden)]
87
+pub mod imp;
88
+
89
+// SNAP: x86_64-pc-windows-msvc
90
+#[cfg(all(stage0, windows, target_arch = "x86_64", target_env = "msvc"))]
91
+#[path = "seh.rs"] #[doc(hidden)]
92
93
94
// x86_64-pc-windows-*
-#[cfg(all(windows, target_arch = "x86_64"))]
95
+#[cfg(all(not(stage0), windows, target_arch = "x86_64"))]
96
#[path = "seh64_gnu.rs"] #[doc(hidden)]
97
98
0 commit comments