@@ -280,21 +280,15 @@ mod c {
280
280
281
281
if target_env == "msvc" {
282
282
if target_arch == "x86_64" {
283
- sources. extend ( & [
284
- ( "__floatdisf" , "x86_64/floatdisf.c" ) ,
285
- ( "__floatdixf" , "x86_64/floatdixf.c" ) ,
286
- ] ) ;
283
+ sources. extend ( & [ ( "__floatdixf" , "x86_64/floatdixf.c" ) ] ) ;
287
284
}
288
285
} else {
289
286
// None of these seem to be used on x86_64 windows, and they've all
290
287
// got the wrong ABI anyway, so we want to avoid them.
291
288
if target_os != "windows" {
292
289
if target_arch == "x86_64" {
293
290
sources. extend ( & [
294
- ( "__floatdisf" , "x86_64/floatdisf.c" ) ,
295
291
( "__floatdixf" , "x86_64/floatdixf.c" ) ,
296
- ( "__floatundidf" , "x86_64/floatundidf.S" ) ,
297
- ( "__floatundisf" , "x86_64/floatundisf.S" ) ,
298
292
( "__floatundixf" , "x86_64/floatundixf.S" ) ,
299
293
] ) ;
300
294
}
@@ -305,11 +299,7 @@ mod c {
305
299
( "__ashldi3" , "i386/ashldi3.S" ) ,
306
300
( "__ashrdi3" , "i386/ashrdi3.S" ) ,
307
301
( "__divdi3" , "i386/divdi3.S" ) ,
308
- ( "__floatdidf" , "i386/floatdidf.S" ) ,
309
- ( "__floatdisf" , "i386/floatdisf.S" ) ,
310
302
( "__floatdixf" , "i386/floatdixf.S" ) ,
311
- ( "__floatundidf" , "i386/floatundidf.S" ) ,
312
- ( "__floatundisf" , "i386/floatundisf.S" ) ,
313
303
( "__floatundixf" , "i386/floatundixf.S" ) ,
314
304
( "__lshrdi3" , "i386/lshrdi3.S" ) ,
315
305
( "__moddi3" , "i386/moddi3.S" ) ,
0 commit comments