Skip to content

Commit

Permalink
fmt: Skip src/target_features_whitelist.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
CohenArthur committed Aug 28, 2020
1 parent 9c848e1 commit ed35bc8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/target_features_whitelist.rs
@@ -1,3 +1,5 @@
#[rustfmt::skip]

use rustc_span::symbol::{sym, Symbol};

use rustc_session::Session;
Expand Down Expand Up @@ -107,10 +109,8 @@ const POWERPC_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
("vsx", Some(sym::powerpc_target_feature)),
];

const MIPS_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
("fp64", Some(sym::mips_target_feature)),
("msa", Some(sym::mips_target_feature)),
];
const MIPS_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] =
&[("fp64", Some(sym::mips_target_feature)), ("msa", Some(sym::mips_target_feature))];

const RISCV_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
("m", Some(sym::riscv_target_feature)),
Expand Down

0 comments on commit ed35bc8

Please sign in to comment.