diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-18 17:55:27 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-18 17:55:27 +0100 |
commit | 031bfef600e7021c8bd72e2e663f368e7386b131 (patch) | |
tree | 4e724c3b13278e5c6fb90a9380d19dc1d253b4b3 /flowgraph | |
parent | 927eb99e75325164a541c2638e1e607294019381 (diff) |
Added Asm ops
Diffstat (limited to 'flowgraph')
-rw-r--r-- | flowgraph/node.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/flowgraph/node.h b/flowgraph/node.h index 6a3ef14..def3c04 100644 --- a/flowgraph/node.h +++ b/flowgraph/node.h @@ -117,9 +117,9 @@ namespace FlowGraph { enum class UnaryOperationType: int { - Increment, - Decrement, - Negate, + LogicalNot, + BitwiseNot, + Minus, }; class UnaryOperation: public Node |