Skip to content

Commit

Permalink
[CN-Test-Gen] Fix typo in C expression generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ZippeyKeys12 committed Jul 17, 2024
1 parent 612fbd5 commit 773f537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/cn/testGeneration.ml
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ let rec codify_it_ (e : BT.t IT.term_) : string option =
| Const (Bits ((Unsigned, bits), n)) when bits <= 64 ->
Int64.to_string (Z.to_int64 n) ^ "ULL"
| Const (Bool b) -> string_of_bool b
| Sym x -> Sym.pp_string x
| Sym x -> codify_sym x
| Unop (Not, e') -> "(!" ^ codify_it e' ^ ")"
| Unop (Negate, e') -> "(-" ^ codify_it e' ^ ")"
| Binop (And, e1, e2) -> "(" ^ codify_it e1 ^ " && " ^ codify_it e2 ^ ")"
Expand Down

0 comments on commit 773f537

Please sign in to comment.