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 88856c7 commit 6eb620aCopy full SHA for 6eb620a
src/backtrace/libunwind.rs
@@ -66,11 +66,7 @@ impl Frame {
66
//
67
// Note the `skip_inner_frames.rs` test is skipped on macOS due to this
68
// clause, and if this is fixed that test in theory can be run on macOS!
69
- if cfg!(target_os = "macos")
70
- || cfg!(target_os = "ios")
71
- || cfg!(target_os = "tvos")
72
- || cfg!(target_os = "watchos")
73
- {
+ if cfg!(target_vendor = "apple") {
74
self.ip()
75
} else {
76
unsafe { uw::_Unwind_FindEnclosingFunction(self.ip()) }
0 commit comments