]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_target/src/spec/mod.rs
Rollup merge of #96415 - ehuss:git-io, r=bjorn3
[rust.git] / compiler / rustc_target / src / spec / mod.rs
index bd5b712c143c5047c133fb62db6771b447c98eec..965a3c109832ba2cfa79b7a1075955f03a04bc7d 100644 (file)
@@ -2249,10 +2249,6 @@ macro_rules! target_val {
                 let name = (stringify!($attr)).replace("_", "-");
                 d.insert(name, self.$attr.to_json());
             }};
-            ($attr:ident, $key_name:expr) => {{
-                let name = $key_name;
-                d.insert(name.into(), self.$attr.to_json());
-            }};
         }
 
         macro_rules! target_option_val {