File tree 5 files changed +3
-137
lines changed
5 files changed +3
-137
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ features = ["c"]
129
129
- [x] arm/softfloat-alias.list
130
130
- [x] arm/subdf3vfp.S
131
131
- [x] arm/subsf3vfp.S
132
- - [x ] arm/truncdfsf2vfp.S
132
+ - [ ] arm/truncdfsf2vfp.S
133
133
- [ ] arm/udivmodsi4.S (generic version is done)
134
134
- [ ] arm/udivsi3.S (generic version is done)
135
135
- [ ] arm/umodsi3.S (generic version is done)
@@ -186,7 +186,7 @@ features = ["c"]
186
186
- [x] subdf3.c
187
187
- [x] subsf3.c
188
188
- [ ] truncdfhf2.c
189
- - [x ] truncdfsf2.c
189
+ - [ ] truncdfsf2.c
190
190
- [ ] truncsfhf2.c
191
191
- [x] udivdi3.c
192
192
- [x] udivmoddi4.c
Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ mod c {
174
174
"subvdi3.c" ,
175
175
"subvsi3.c" ,
176
176
"truncdfhf2.c" ,
177
+ "truncdfsf2.c" ,
177
178
"truncsfhf2.c" ,
178
179
"ucmpdi2.c" ,
179
180
] ,
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ pub mod sub;
11
11
pub mod mul;
12
12
pub mod div;
13
13
pub mod extend;
14
- pub mod truncate;
15
14
16
15
/// Trait for some basic operations on floats
17
16
pub trait Float :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -348,24 +348,6 @@ fn main() {
348
348
"builtins::float::extend::__extendsfdf2vfp(a)" ) ;
349
349
}
350
350
351
- // float/truncate.rs
352
- gen ( |a : MyF64 | {
353
- if a. 0 . is_nan ( ) {
354
- return None ;
355
- }
356
- Some ( a. 0 as f32 )
357
- } ,
358
- "builtins::float::truncate::__truncdfsf2(a)" ) ;
359
- if target_arch_arm {
360
- gen ( |a : LargeF64 | {
361
- if a. 0 . is_nan ( ) {
362
- return None ;
363
- }
364
- Some ( a. 0 as f32 )
365
- } ,
366
- "builtins::float::truncate::__truncdfsf2vfp(a)" ) ;
367
- }
368
-
369
351
// float/conv.rs
370
352
gen ( |a : MyF64 | i64 ( a. 0 ) . ok ( ) ,
371
353
"builtins::float::conv::__fixdfdi(a)" ) ;
You can’t perform that action at this time.
0 commit comments