File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
crates/intrinsic-test/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ fn json_to_intrinsic(
79
79
) -> Result < Intrinsic < ArmIntrinsicType > , Box < dyn std:: error:: Error > > {
80
80
let name = intr. name . replace ( [ '[' , ']' ] , "" ) ;
81
81
82
- let results = ArmIntrinsicType :: from_c ( & intr. return_type . value , target) ?;
82
+ let results = ArmIntrinsicType :: from_c ( & intr. return_type . value , & target. to_string ( ) ) ?;
83
83
84
84
let args = intr
85
85
. arguments
Original file line number Diff line number Diff line change
1
+ mod config;
1
2
mod intrinsic;
2
3
mod types;
3
4
mod xml_parser;
4
- mod config;
5
5
6
6
use crate :: common:: SupportedArchitectureTest ;
7
7
use crate :: common:: cli:: ProcessedCli ;
8
8
use crate :: common:: intrinsic:: { Intrinsic , IntrinsicDefinition } ;
9
9
use crate :: common:: write_file:: { write_c_testfiles, write_rust_testfiles} ;
10
+ use config:: build_notices;
10
11
use intrinsic:: X86IntrinsicType ;
11
12
use xml_parser:: get_xml_intrinsics;
12
- use config:: build_notices;
13
13
14
14
pub struct X86ArchitectureTest {
15
15
intrinsics : Vec < Intrinsic < X86IntrinsicType > > ,
You can’t perform that action at this time.
0 commit comments