@@ -80,7 +80,8 @@ simd_f_ty! {
80
80
81
81
impl_from_bits ! (
82
82
u64x2: u64 ,
83
- u64x2_from_bits, test_v128 | i64x2,
83
+ u64x2_from_bits,
84
+ test_v128 | i64x2,
84
85
f64x2,
85
86
u32x4,
86
87
i32x4,
@@ -93,7 +94,8 @@ impl_from_bits!(
93
94
) ;
94
95
impl_from_bits ! (
95
96
i64x2: i64 ,
96
- i64x2_from_bits, test_v128 | u64x2,
97
+ i64x2_from_bits,
98
+ test_v128 | u64x2,
97
99
f64x2,
98
100
u32x4,
99
101
i32x4,
@@ -106,7 +108,8 @@ impl_from_bits!(
106
108
) ;
107
109
impl_from_bits ! (
108
110
f64x2: f64 ,
109
- f64x2_from_bits, test_v128 | i64x2,
111
+ f64x2_from_bits,
112
+ test_v128 | i64x2,
110
113
u64x2,
111
114
u32x4,
112
115
i32x4,
@@ -119,7 +122,8 @@ impl_from_bits!(
119
122
) ;
120
123
impl_from_bits ! (
121
124
u32x4: u32 ,
122
- u32x4_from_bits, test_v128 | u64x2,
125
+ u32x4_from_bits,
126
+ test_v128 | u64x2,
123
127
i64x2,
124
128
f64x2,
125
129
i32x4,
@@ -132,7 +136,8 @@ impl_from_bits!(
132
136
) ;
133
137
impl_from_bits ! (
134
138
i32x4: i32 ,
135
- i32x4_from_bits, test_v128 | u64x2,
139
+ i32x4_from_bits,
140
+ test_v128 | u64x2,
136
141
i64x2,
137
142
f64x2,
138
143
u32x4,
@@ -145,7 +150,8 @@ impl_from_bits!(
145
150
) ;
146
151
impl_from_bits ! (
147
152
f32x4: f32 ,
148
- f32x4_from_bits, test_v128 | u64x2,
153
+ f32x4_from_bits,
154
+ test_v128 | u64x2,
149
155
i64x2,
150
156
f64x2,
151
157
i32x4,
@@ -158,7 +164,8 @@ impl_from_bits!(
158
164
) ;
159
165
impl_from_bits ! (
160
166
u16x8: u16 ,
161
- u16x8_from_bits, test_v128 | u64x2,
167
+ u16x8_from_bits,
168
+ test_v128 | u64x2,
162
169
i64x2,
163
170
f64x2,
164
171
u32x4,
@@ -171,7 +178,8 @@ impl_from_bits!(
171
178
) ;
172
179
impl_from_bits ! (
173
180
i16x8: i16 ,
174
- i16x8_from_bits, test_v128 | u64x2,
181
+ i16x8_from_bits,
182
+ test_v128 | u64x2,
175
183
i64x2,
176
184
f64x2,
177
185
u32x4,
@@ -184,7 +192,8 @@ impl_from_bits!(
184
192
) ;
185
193
impl_from_bits ! (
186
194
u8x16: u8 ,
187
- u8x16_from_bits, test_v128 | u64x2,
195
+ u8x16_from_bits,
196
+ test_v128 | u64x2,
188
197
i64x2,
189
198
f64x2,
190
199
u32x4,
@@ -197,7 +206,8 @@ impl_from_bits!(
197
206
) ;
198
207
impl_from_bits ! (
199
208
i8x16: i8 ,
200
- i8x16_from_bits, test_v128 | u64x2,
209
+ i8x16_from_bits,
210
+ test_v128 | u64x2,
201
211
i64x2,
202
212
f64x2,
203
213
u32x4,
@@ -210,9 +220,9 @@ impl_from_bits!(
210
220
) ;
211
221
212
222
#[ cfg( target_arch = "x86" ) ]
213
- use coresimd:: arch:: x86:: { __m128, __m128i , __m128d } ;
223
+ use coresimd:: arch:: x86:: { __m128, __m128d , __m128i } ;
214
224
#[ cfg( target_arch = "x86_64" ) ]
215
- use coresimd:: arch:: x86_64:: { __m128, __m128i , __m128d } ;
225
+ use coresimd:: arch:: x86_64:: { __m128, __m128d , __m128i } ;
216
226
217
227
#[ cfg( any( target_arch = "x86" , target_arch = "x86_64" ) ) ]
218
228
impl_from_bits_ ! ( f64x2: __m128, __m128i, __m128d) ;
@@ -237,7 +247,8 @@ impl_from_bits_!(i8x16: __m128, __m128i, __m128d);
237
247
238
248
impl_from ! (
239
249
f64x2: f64 ,
240
- f64x2_from, test_v128 | f32x2,
250
+ f64x2_from,
251
+ test_v128 | f32x2,
241
252
u64x2,
242
253
i64x2,
243
254
u32x2,
@@ -249,7 +260,8 @@ impl_from!(
249
260
) ;
250
261
impl_from ! (
251
262
f32x4: f32 ,
252
- f32x4_from, test_v128 | f64x4,
263
+ f32x4_from,
264
+ test_v128 | f64x4,
253
265
u64x4,
254
266
i64x4,
255
267
u32x4,
@@ -261,7 +273,8 @@ impl_from!(
261
273
) ;
262
274
impl_from ! (
263
275
u64x2: u64 ,
264
- u64x2_from, test_v128 | f32x2,
276
+ u64x2_from,
277
+ test_v128 | f32x2,
265
278
f64x2,
266
279
i64x2,
267
280
i32x2,
@@ -273,7 +286,8 @@ impl_from!(
273
286
) ;
274
287
impl_from ! (
275
288
i64x2: i64 ,
276
- i64x2_from, test_v128 | f32x2,
289
+ i64x2_from,
290
+ test_v128 | f32x2,
277
291
f64x2,
278
292
u64x2,
279
293
i32x2,
@@ -285,7 +299,8 @@ impl_from!(
285
299
) ;
286
300
impl_from ! (
287
301
u32x4: u32 ,
288
- u32x4_from, test_v128 | f64x4,
302
+ u32x4_from,
303
+ test_v128 | f64x4,
289
304
u64x4,
290
305
i64x4,
291
306
f32x4,
@@ -297,7 +312,8 @@ impl_from!(
297
312
) ;
298
313
impl_from ! (
299
314
i32x4: i32 ,
300
- i32x4_from, test_v128 | f64x4,
315
+ i32x4_from,
316
+ test_v128 | f64x4,
301
317
u64x4,
302
318
i64x4,
303
319
f32x4,
@@ -309,7 +325,8 @@ impl_from!(
309
325
) ;
310
326
impl_from ! (
311
327
i16x8: i16 ,
312
- i16x8_from, test_v128 | f64x8,
328
+ i16x8_from,
329
+ test_v128 | f64x8,
313
330
u64x8,
314
331
i64x8,
315
332
f32x8,
@@ -321,7 +338,8 @@ impl_from!(
321
338
) ;
322
339
impl_from ! (
323
340
u16x8: u16 ,
324
- u16x8_from, test_v128 | f64x8,
341
+ u16x8_from,
342
+ test_v128 | f64x8,
325
343
u64x8,
326
344
i64x8,
327
345
f32x8,
0 commit comments