File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 40
40
) ]
41
41
// Used to implement `ImplsAsCStr` trait
42
42
#![ feature( min_specialization) ]
43
- // For the panic handler
44
- #![ feature( panic_info_message) ]
45
43
// For global_asm! on MIPS
46
44
#![ feature( asm_experimental_arch) ]
47
45
// For `__start`'s return type
Original file line number Diff line number Diff line change @@ -44,9 +44,6 @@ fn min_panic(info: &core::panic::PanicInfo) {
44
44
println ! ( "Panicked at unknown location" )
45
45
} ,
46
46
}
47
- if let Some ( msg) = info. message ( ) {
48
- println ! ( "{}" , msg)
49
- }
50
47
}
51
48
52
49
fn normal_panic ( info : & core:: panic:: PanicInfo ) {
@@ -70,9 +67,6 @@ fn normal_panic(info: &core::panic::PanicInfo) {
70
67
dprintln ! ( txt, "Panicked at unknown location" ) ;
71
68
} ,
72
69
}
73
- if let Some ( msg) = info. message ( ) {
74
- dprintln ! ( txt, "{}" , msg) ;
75
- }
76
70
fb. draw_sync ( ) ;
77
71
fb. wait_vblank ( ) ;
78
72
fb. swap ( ) ;
You can’t perform that action at this time.
0 commit comments