We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88b3761 commit d473c9aCopy full SHA for d473c9a
crates/intrinsic-test/src/arm/json_parser.rs
@@ -12,6 +12,8 @@ use std::path::Path;
12
#[serde(deny_unknown_fields)]
13
struct ReturnType {
14
value: String,
15
+ #[serde(rename = "element_bit_size")]
16
+ _element_bit_size: Option<String>,
17
}
18
19
#[derive(Deserialize, Debug)]
@@ -50,6 +52,8 @@ struct JsonIntrinsic {
50
52
args_prep: Option<HashMap<String, Value>>,
51
53
#[serde(rename = "Architectures")]
54
architectures: Vec<String>,
55
+ #[serde(rename = "instructions")]
56
+ _instructions: Option<Vec<Vec<String>>>,
57
58
59
pub fn get_neon_intrinsics(
0 commit comments