about summary refs log tree commit diff
path: root/compiler/rustc_driver_impl/src/lib.rs
diff options
context:
space:
mode:
authorAndy Russell <arussell123@gmail.com>2023-01-15 13:43:15 -0500
committerAndy Russell <arussell123@gmail.com>2023-03-20 13:19:35 -0400
commitbb7c373fdf6c7c3fb8e204dcc178d870644fcc4b (patch)
tree32094fdb49a0bb37a86af2e10f3189c9070cf513 /compiler/rustc_driver_impl/src/lib.rs
parent13b7aa4d7faafbed78d195c27f6868f6bd90c2f8 (diff)
downloadrust-bb7c373fdf6c7c3fb8e204dcc178d870644fcc4b.tar.gz
rust-bb7c373fdf6c7c3fb8e204dcc178d870644fcc4b.zip
migrate compiler, bootstrap, and compiletest to windows-rs
Diffstat (limited to 'compiler/rustc_driver_impl/src/lib.rs')
-rw-r--r--compiler/rustc_driver_impl/src/lib.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/compiler/rustc_driver_impl/src/lib.rs b/compiler/rustc_driver_impl/src/lib.rs
index 555917c8b5e..8634c644176 100644
--- a/compiler/rustc_driver_impl/src/lib.rs
+++ b/compiler/rustc_driver_impl/src/lib.rs
@@ -1246,11 +1246,9 @@ pub fn report_ice(info: &panic::PanicInfo<'_>, bug_report_url: &str) {
     interface::try_print_query_stack(&handler, num_frames);
 
     #[cfg(windows)]
-    unsafe {
-        if env::var("RUSTC_BREAK_ON_ICE").is_ok() {
-            // Trigger a debugger if we crashed during bootstrap
-            winapi::um::debugapi::DebugBreak();
-        }
+    if env::var("RUSTC_BREAK_ON_ICE").is_ok() {
+        // Trigger a debugger if we crashed during bootstrap
+        unsafe { windows::Win32::System::Diagnostics::Debug::DebugBreak() };
     }
 }