hotfix for incorrect only- logic

This commit is contained in:
Ralf Jung 2022-06-06 19:11:59 -04:00
parent e6d3d9888d
commit 66d3ee157b

View File

@ -516,9 +516,10 @@ fn ignore_file(comments: &Comments, target: &str) -> bool {
if !target.contains(s) {
return true;
}
/* FIXME(https://github.com/rust-lang/miri/issues/2206)
if get_pointer_width(target) != s {
return true;
}
} */
}
false
}