We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b86a2ee commit 74c7f12Copy full SHA for 74c7f12
compiler/rustc_session/src/session.rs
@@ -190,6 +190,9 @@ pub struct Session {
190
/// Tracks the current behavior of the CTFE engine when an error occurs.
191
/// Options range from returning the error without a backtrace to returning an error
192
/// and immediately printing the backtrace to stderr.
193
+ /// The `Lock` is only used by miri to allow setting `ctfe_backtrace` after analysis when
194
+ /// `MIRI_BACKTRACE` is set. This makes it only apply to miri's errors and not to all CTFE
195
+ /// errors.
196
pub ctfe_backtrace: Lock<CtfeBacktrace>,
197
198
/// This tracks where `-Zunleash-the-miri-inside-of-you` was used to get around a
0 commit comments