summaryrefslogtreecommitdiffhomepage
path: root/flowgraph/node.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-22 17:11:11 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-22 17:11:11 +0100
commitad3fd947005400c90f41baa4416a27d94b1bc157 (patch)
tree4332b7ad2183f0e5b4e10719129573540519413a /flowgraph/node.h
parentfd8517e10937a5b72ed839ce900306f281d74b7d (diff)
Clarify flowgraph types
Diffstat (limited to 'flowgraph/node.h')
-rw-r--r--flowgraph/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/flowgraph/node.h b/flowgraph/node.h
index def3c04..34e937b 100644
--- a/flowgraph/node.h
+++ b/flowgraph/node.h
@@ -48,8 +48,8 @@ namespace FlowGraph {
};
Data MakeConstantInt(int i);
+ Data MakeLocalInt(std::shared_ptr<FlowGraph::LocalScope> scope, const std::string& name);
Data MakeLocalPointer(std::shared_ptr<FlowGraph::LocalScope> scope, const std::string& name);
- Data MakeLocalSize(std::shared_ptr<FlowGraph::LocalScope> scope, const std::string& name);
Data MakeTemporaryInt(std::shared_ptr<LocalScope> scope);
class MemCopy: public Node