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