Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 756544 | Differences between
and this patch

Collapse All | Expand All

(-)thunderbird-78.5.0-orig/third_party/rust/packed_simd/src/codegen/reductions/mask/x86.rs (-7 / +1 lines)
Lines 19-31 mod avx2; Link Here
19
/// x86 64-bit m8x8 implementation
19
/// x86 64-bit m8x8 implementation
20
macro_rules! x86_m8x8_impl {
20
macro_rules! x86_m8x8_impl {
21
    ($id:ident) => {
21
    ($id:ident) => {
22
        cfg_if! {
22
        fallback_impl!($id);
23
            if #[cfg(all(target_arch = "x86_64", target_feature = "sse"))] {
24
                x86_m8x8_sse_impl!($id);
25
            } else {
26
                fallback_impl!($id);
27
            }
28
        }
29
    };
23
    };
30
}
24
}
31
25
(-)thunderbird-78.5.0-orig/third_party/rust/packed_simd/src/lib.rs (-1 lines)
Lines 210-216 Link Here
210
    core_intrinsics,
210
    core_intrinsics,
211
    stmt_expr_attributes,
211
    stmt_expr_attributes,
212
    align_offset,
212
    align_offset,
213
    mmx_target_feature,
214
    crate_visibility_modifier,
213
    crate_visibility_modifier,
215
    custom_inner_attributes
214
    custom_inner_attributes
216
)]
215
)]

Return to bug 756544