28
28
//!
29
29
30
30
#![ feature( start) ]
31
- #![ feature( core_intrinsics) ]
32
- #![ feature( panic_info_message) ]
33
31
#![ feature( alloc_error_handler) ]
34
32
#![ no_std]
35
33
extern crate libc;
@@ -48,8 +46,7 @@ extern crate wee_alloc;
48
46
#[ global_allocator]
49
47
static ALLOC : wee_alloc:: WeeAlloc = wee_alloc:: WeeAlloc :: INIT ;
50
48
51
- use core:: fmt:: { self , write, Write } ;
52
- use core:: intrinsics;
49
+ use core:: fmt:: { self , Write } ;
53
50
use core:: panic:: PanicInfo ;
54
51
55
52
use secp256k1:: ecdh:: { self , SharedSecret } ;
@@ -62,6 +59,10 @@ use serde_cbor::de;
62
59
use serde_cbor:: ser:: SliceWrite ;
63
60
use serde_cbor:: Serializer ;
64
61
62
+ fn abort ( ) -> ! {
63
+ unsafe { libc:: abort ( ) }
64
+ }
65
+
65
66
struct FakeRng ;
66
67
impl RngCore for FakeRng {
67
68
fn next_u32 ( & mut self ) -> u32 {
@@ -158,7 +159,7 @@ impl Write for Print {
158
159
if curr + s. len ( ) > MAX_PRINT {
159
160
unsafe {
160
161
libc:: printf ( "overflow\n \0 " . as_ptr ( ) as _ ) ;
161
- intrinsics :: abort ( ) ;
162
+ abort ( ) ;
162
163
}
163
164
}
164
165
self . loc += s. len ( ) ;
@@ -170,15 +171,15 @@ impl Write for Print {
170
171
#[ panic_handler]
171
172
fn panic ( info : & PanicInfo ) -> ! {
172
173
unsafe { libc:: printf ( "shi1\n \0 " . as_ptr ( ) as _ ) } ;
173
- let msg = info. message ( ) . unwrap ( ) ;
174
+ let msg = info. message ( ) ;
174
175
let mut buf = Print :: new ( ) ;
175
- write ( & mut buf, * msg) . unwrap ( ) ;
176
+ write ! ( & mut buf, "{}" , msg) . unwrap ( ) ;
176
177
buf. print ( ) ;
177
- intrinsics :: abort ( )
178
+ abort ( )
178
179
}
179
180
180
181
#[ alloc_error_handler]
181
182
fn alloc_error ( _layout : Layout ) -> ! {
182
183
unsafe { libc:: printf ( "alloc shi1\n \0 " . as_ptr ( ) as _ ) } ;
183
- intrinsics :: abort ( )
184
+ abort ( )
184
185
}
0 commit comments