Skip to content

Commit

Permalink
forget to edit f_ops ast
Browse files Browse the repository at this point in the history
  • Loading branch information
clyben committed May 21, 2024
1 parent 67abe3d commit b80e663
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions dag_in_context/src/pretty_print.rs
Original file line number Diff line number Diff line change
Expand Up @@ -671,15 +671,15 @@ impl BinaryOp {
Load => "load",
Print => "tprint",
Free => "free",
FGreaterEq => "f_greater_eq",
FGreaterThan => "f_greater_than",
FLessEq => "f_less_eq",
FLessThan => "f_less_than",
FAdd => "f_add",
FSub => "f_sub",
FDiv => "f_div",
FMul => "f_mul",
FEq => "f_eq",
FGreaterEq => "fgreater_eq",
FGreaterThan => "fgreater_than",
FLessEq => "fless_eq",
FLessThan => "fless_than",
FAdd => "fadd",
FSub => "fsub",
FDiv => "fdiv",
FMul => "fmul",
FEq => "feq",
}
.into()
}
Expand Down

0 comments on commit b80e663

Please sign in to comment.