summaryrefslogtreecommitdiffhomepage
path: root/flowgraph
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-18 17:55:27 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-18 17:55:27 +0100
commit031bfef600e7021c8bd72e2e663f368e7386b131 (patch)
tree4e724c3b13278e5c6fb90a9380d19dc1d253b4b3 /flowgraph
parent927eb99e75325164a541c2638e1e607294019381 (diff)
Added Asm ops
Diffstat (limited to 'flowgraph')
-rw-r--r--flowgraph/node.h6
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