From ed35bc8414f3b78c3f9a9bda221d8a750bd99476 Mon Sep 17 00:00:00 2001 From: CohenArthur Date: Fri, 28 Aug 2020 12:23:01 +0200 Subject: [PATCH] fmt: Skip src/target_features_whitelist.rs --- src/target_features_whitelist.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/target_features_whitelist.rs b/src/target_features_whitelist.rs index a5d9b5e751a..6fd032b4324 100644 --- a/src/target_features_whitelist.rs +++ b/src/target_features_whitelist.rs @@ -1,3 +1,5 @@ +#[rustfmt::skip] + use rustc_span::symbol::{sym, Symbol}; use rustc_session::Session; @@ -107,10 +109,8 @@ const POWERPC_ALLOWED_FEATURES: &[(&str, Option)] = &[ ("vsx", Some(sym::powerpc_target_feature)), ]; -const MIPS_ALLOWED_FEATURES: &[(&str, Option)] = &[ - ("fp64", Some(sym::mips_target_feature)), - ("msa", Some(sym::mips_target_feature)), -]; +const MIPS_ALLOWED_FEATURES: &[(&str, Option)] = + &[("fp64", Some(sym::mips_target_feature)), ("msa", Some(sym::mips_target_feature))]; const RISCV_ALLOWED_FEATURES: &[(&str, Option)] = &[ ("m", Some(sym::riscv_target_feature)),