File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
crates/intrinsic-test/src Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ use intrinsic::Intrinsic;
14
14
use json_parser:: get_neon_intrinsics;
15
15
use types:: TypeKind ;
16
16
17
- pub struct ArmTestProcessor {
17
+ pub struct ArmArchitectureTest {
18
18
intrinsics : Vec < Intrinsic > ,
19
19
cli_options : ProcessedCli ,
20
20
}
21
21
22
- impl SupportedArchitectureTest for ArmTestProcessor {
22
+ impl SupportedArchitectureTest for ArmArchitectureTest {
23
23
fn create ( cli_options : ProcessedCli ) -> Self {
24
24
let a32 = cli_options. target . contains ( "v7" ) ;
25
25
let mut intrinsics =
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ extern crate log;
5
5
mod arm;
6
6
mod common;
7
7
8
- use arm:: ArmTestProcessor ;
8
+ use arm:: ArmArchitectureTest ;
9
9
use common:: SupportedArchitectureTest ;
10
10
use common:: types:: { Cli , ProcessedCli } ;
11
11
@@ -17,7 +17,9 @@ fn main() {
17
17
let test_environment_result = match processed_cli_options. target . as_str ( ) {
18
18
"aarch64-unknown-linux-gnu"
19
19
| "armv7-unknown-linux-gnueabihf"
20
- | "aarch64_be-unknown-linux-gnu" => Some ( ArmTestProcessor :: create ( processed_cli_options) ) ,
20
+ | "aarch64_be-unknown-linux-gnu" => {
21
+ Some ( ArmArchitectureTest :: create ( processed_cli_options) )
22
+ }
21
23
22
24
_ => None ,
23
25
} ;
You can’t perform that action at this time.
0 commit comments