Skip to content

Commit 98330fa

Browse files
author
The Miri Cronjob Bot
committed
fmt
1 parent bf7c249 commit 98330fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/machine.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,8 @@ impl<'tcx> Machine<'tcx> for MiriMachine<'tcx> {
10771077
.target_features
10781078
.iter()
10791079
.filter(|&feature| {
1080-
feature.kind != TargetFeatureKind::Implied && !ecx.tcx.sess.target_features.contains(&feature.name)
1080+
feature.kind != TargetFeatureKind::Implied
1081+
&& !ecx.tcx.sess.target_features.contains(&feature.name)
10811082
})
10821083
.fold(String::new(), |mut s, feature| {
10831084
if !s.is_empty() {

0 commit comments

Comments
 (0)