fmt
This commit is contained in:
parent
005dc5cbdc
commit
9e18b7b0e1
1 changed files with 2 additions and 1 deletions
|
|
@ -1077,7 +1077,8 @@ impl<'tcx> Machine<'tcx> for MiriMachine<'tcx> {
|
|||
.target_features
|
||||
.iter()
|
||||
.filter(|&feature| {
|
||||
feature.kind != TargetFeatureKind::Implied && !ecx.tcx.sess.target_features.contains(&feature.name)
|
||||
feature.kind != TargetFeatureKind::Implied
|
||||
&& !ecx.tcx.sess.target_features.contains(&feature.name)
|
||||
})
|
||||
.fold(String::new(), |mut s, feature| {
|
||||
if !s.is_empty() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue