Skip to content

Commit 34fad17

Browse files
committed
More axing the hax
1 parent 5dc77bc commit 34fad17

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

testable-simd-models/src/abstractions/bitvec.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use super::funarr::*;
44

55
use std::fmt::Formatter;
66

7-
// TODO: this module uses `u128/i128` as mathematic integers. We should use `hax_lib::int` or bigint.
87

98
/// A fixed-size bit vector type.
109
///
@@ -19,7 +18,7 @@ use std::fmt::Formatter;
1918
#[derive(Copy, Clone, Eq, PartialEq)]
2019
pub struct BitVec<const N: u64>(FunArray<N, Bit>);
2120

22-
/// Pretty prints a bit slice by group of 8#[hax_lib::exclude]
21+
/// Pretty prints a bit slice by group of 8
2322
fn bit_slice_to_string(bits: &[Bit]) -> String {
2423
bits.iter()
2524
.map(|bit| match bit {

testable-simd-models/src/core_arch/x86/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub(crate) mod upstream {
5353
#[cfg(target_arch = "x86_64")]
5454
pub use core::arch::x86_64::*;
5555
}
56-
#[hax_lib::exclude]
56+
5757
mod conversions {
5858
use super::upstream::{
5959
__m128i, __m256, __m256i, _mm256_castps_si256, _mm256_castsi256_ps, _mm256_loadu_si256,

0 commit comments

Comments
 (0)