Skip to content

Commit

Permalink
Switch ASM dialect from Intel to AT&T
Browse files Browse the repository at this point in the history
  • Loading branch information
benruijl committed Aug 19, 2024
1 parent 12907c2 commit fa978ac
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 122 deletions.
2 changes: 1 addition & 1 deletion examples/nested_evaluation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ fn main() {
println!("{}", r);

let mut compiled = e_f64
.export_cpp("nested_evaluate.cpp", "nested", true, InlineASM::Intel)
.export_cpp("nested_evaluate.cpp", "nested", true, InlineASM::X64)
.unwrap()
.compile("nested", CompileOptions::default())
.unwrap()
Expand Down
2 changes: 1 addition & 1 deletion src/api/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8592,7 +8592,7 @@ impl PythonExpressionEvaluator {
function_name,
true,
if inline_asm {
InlineASM::Intel
InlineASM::X64
} else {
InlineASM::None
},
Expand Down
Loading

0 comments on commit fa978ac

Please sign in to comment.