Summary: Funsym does not need to be defined as a submodule of Fol. Reviewed By: jvillard Differential Revision: D24306092 fbshipit-source-id: 7875f45f0master
parent
6b5fc4be3e
commit
a0a5cf159a
@ -0,0 +1,30 @@
|
||||
(*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*)
|
||||
|
||||
(** Function Symbols *)
|
||||
|
||||
type t =
|
||||
| Float of string
|
||||
| Label of {parent: string; name: string}
|
||||
| Mul
|
||||
| Div
|
||||
| Rem
|
||||
| EmptyRecord
|
||||
| RecRecord of int
|
||||
| BitAnd
|
||||
| BitOr
|
||||
| BitXor
|
||||
| BitShl
|
||||
| BitLshr
|
||||
| BitAshr
|
||||
| Signed of int
|
||||
| Unsigned of int
|
||||
| Convert of {src: Llair.Typ.t; dst: Llair.Typ.t}
|
||||
| Uninterp of string
|
||||
[@@deriving compare, equal, sexp]
|
||||
|
||||
val pp : t pp
|
Loading…
Reference in new issue