File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,9 @@ matrix:
51
51
os : windows
52
52
- name : " x86_64-pc-windows-gnu"
53
53
env : TARGET=x86_64-pc-windows-gnu CROSS=1
54
- - name : " i686-pc-windows-gnu"
55
- env : TARGET=i686-pc-windows-gnu CROSS=1
54
+ # This target is not supported by cross
55
+ # - name: "i686-pc-windows-gnu"
56
+ # env: TARGET=i686-pc-windows-gnu CROSS=1
56
57
57
58
# Tier 2/3 targets:
58
59
- name : " i586-unknown-linux-gnu (no SSE2)"
Original file line number Diff line number Diff line change @@ -21,10 +21,7 @@ type GroupWord = u32;
21
21
pub type BitMaskWord = GroupWord ;
22
22
pub const BITMASK_STRIDE : usize = 8 ;
23
23
// We only care about the highest bit of each byte for the mask.
24
- #[ allow(
25
- clippy:: cast_possible_truncation,
26
- clippy:: unnecessary_cast,
27
- ) ]
24
+ #[ allow( clippy:: cast_possible_truncation, clippy:: unnecessary_cast) ]
28
25
pub const BITMASK_MASK : BitMaskWord = 0x8080_8080_8080_8080_u64 as GroupWord ;
29
26
30
27
/// Helper function to replicate a byte across a `GroupWord`.
Original file line number Diff line number Diff line change @@ -135,7 +135,10 @@ impl Group {
135
135
unsafe {
136
136
let zero = x86:: _mm_setzero_si128 ( ) ;
137
137
let special = x86:: _mm_cmpgt_epi8 ( zero, self . 0 ) ;
138
- Group ( x86:: _mm_or_si128 ( special, x86:: _mm_set1_epi8 ( 0x80_u8 as i8 ) ) )
138
+ Group ( x86:: _mm_or_si128 (
139
+ special,
140
+ x86:: _mm_set1_epi8 ( 0x80_u8 as i8 ) ,
141
+ ) )
139
142
}
140
143
}
141
144
}
You can’t perform that action at this time.
0 commit comments