Skip to content

Commit

Permalink
fix asm
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed May 22, 2024
1 parent 2ad034b commit b37e004
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testcrate/benches/float_cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ float_bench! {
"xor {ret:e}, {ret:e}",
"ucomiss {a}, {b}",
"setp {ret:l}",
a = inout(xmm_reg) a,
a = in(xmm_reg) a,
b = in(xmm_reg) b,
ret = out(reg) ret,
options(nomem, nostack)
Expand Down Expand Up @@ -142,7 +142,7 @@ float_bench! {
"xor {ret:e}, {ret}",
"ucomisd {a}, {b}",
"setp {ret:l}",
a = inout(xmm_reg) a,
a = in(xmm_reg) a,
b = in(xmm_reg) b,
ret = out(reg) ret,
options(nomem, nostack)
Expand Down

0 comments on commit b37e004

Please sign in to comment.