We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04f24b7 commit 9f3679fCopy full SHA for 9f3679f
src/libpanic_unwind/seh.rs
@@ -237,7 +237,7 @@ static mut TYPE_DESCRIPTOR: _TypeDescriptor = _TypeDescriptor {
237
macro_rules! define_cleanup {
238
($abi:tt) => {
239
unsafe extern $abi fn exception_cleanup(e: *mut Exception) {
240
- if let Some(b) = e.read().data {
+ if let Exception { data: Some(b) } = e.read() {
241
drop(b);
242
super::__rust_drop_panic();
243
}
src/librustc_codegen_llvm/intrinsic.rs
@@ -1024,7 +1024,7 @@ fn codegen_gnu_try(
1024
// Codegens the shims described above:
1025
//
1026
// bx:
1027
- // invoke %func(%data) normal %normal unwind %catch
+ // invoke %try_func(%data) normal %normal unwind %catch
1028
1029
// normal:
1030
// ret 0
0 commit comments