diff --git a/theories/heap_lang/notation.v b/theories/heap_lang/notation.v index 891059ebaae8ceeb99030b4492f888b5d7252bcc..420fb7154b8fcd495c82da743315c9ba56dedd49 100644 --- a/theories/heap_lang/notation.v +++ b/theories/heap_lang/notation.v @@ -60,6 +60,7 @@ Notation "'ref' e" := (Alloc e%E) (at level 10) : expr_scope. Notation "- e" := (UnOp MinusUnOp e%E) : expr_scope. Notation "e1 + e2" := (BinOp PlusOp e1%E e2%E) : expr_scope. +Notation "e1 +â‚— e2" := (BinOp OffsetOp e1%E e2%E) : expr_scope. Notation "e1 - e2" := (BinOp MinusOp e1%E e2%E) : expr_scope. Notation "e1 * e2" := (BinOp MultOp e1%E e2%E) : expr_scope. Notation "e1 `quot` e2" := (BinOp QuotOp e1%E e2%E) : expr_scope.