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 921993e commit 610794eCopy full SHA for 610794e
compiler/rustc_session/src/config/cfg.rs
@@ -296,7 +296,8 @@ pub(crate) fn default_configuration(sess: &Session) -> Cfg {
296
ins_none!(sym::ub_checks);
297
}
298
299
- if sess.opts.unstable_opts.emscripten_wasm_eh {
+ // Nightly-only implementation detail for the `panic_unwind` and `unwind` crates.
300
+ if sess.is_nightly_build() && sess.opts.unstable_opts.emscripten_wasm_eh {
301
ins_none!(sym::emscripten_wasm_eh);
302
303
ret
0 commit comments