File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -109,12 +109,10 @@ intrinsics! {
109
109
}
110
110
}
111
111
112
- #[ unadjusted_on_win64]
113
112
pub extern "C" fn __floattisf( i: i128 ) -> f32 {
114
113
int_to_float( i)
115
114
}
116
115
117
- #[ unadjusted_on_win64]
118
116
pub extern "C" fn __floattidf( i: i128 ) -> f64 {
119
117
int_to_float( i)
120
118
}
@@ -141,12 +139,10 @@ intrinsics! {
141
139
int_to_float( i)
142
140
}
143
141
144
- #[ unadjusted_on_win64]
145
142
pub extern "C" fn __floatuntisf( i: u128 ) -> f32 {
146
143
int_to_float( i)
147
144
}
148
145
149
- #[ unadjusted_on_win64]
150
146
pub extern "C" fn __floatuntidf( i: u128 ) -> f64 {
151
147
int_to_float( i)
152
148
}
@@ -224,7 +220,7 @@ intrinsics! {
224
220
float_to_int( f)
225
221
}
226
222
227
- #[ unadjusted_on_win64 ]
223
+ #[ win64_128bit_abi_hack ]
228
224
pub extern "C" fn __fixsfti( f: f32 ) -> i128 {
229
225
float_to_int( f)
230
226
}
@@ -239,7 +235,7 @@ intrinsics! {
239
235
float_to_int( f)
240
236
}
241
237
242
- #[ unadjusted_on_win64 ]
238
+ #[ win64_128bit_abi_hack ]
243
239
pub extern "C" fn __fixdfti( f: f64 ) -> i128 {
244
240
float_to_int( f)
245
241
}
@@ -254,7 +250,7 @@ intrinsics! {
254
250
float_to_int( f)
255
251
}
256
252
257
- #[ unadjusted_on_win64 ]
253
+ #[ win64_128bit_abi_hack ]
258
254
pub extern "C" fn __fixunssfti( f: f32 ) -> u128 {
259
255
float_to_int( f)
260
256
}
@@ -269,7 +265,7 @@ intrinsics! {
269
265
float_to_int( f)
270
266
}
271
267
272
- #[ unadjusted_on_win64 ]
268
+ #[ win64_128bit_abi_hack ]
273
269
pub extern "C" fn __fixunsdfti( f: f64 ) -> u128 {
274
270
float_to_int( f)
275
271
}
You can’t perform that action at this time.
0 commit comments