aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/function.hpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-10 12:48:53 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-10 12:48:53 +0000
commit28251a0c6f4e31c63c12746ffa77e05c669ef80d (patch)
treee1a9dfad8db410a0ae0db0e56f1bfc9accac6262 /c_compiler/include/function.hpp
parent3e145bf08b1ffcccb4df8f2fc34f5bb95b5b250c (diff)
downloadCompiler-28251a0c6f4e31c63c12746ffa77e05c669ef80d.tar.gz
Compiler-28251a0c6f4e31c63c12746ffa77e05c669ef80d.zip
Changing printasm
Diffstat (limited to 'c_compiler/include/function.hpp')
-rw-r--r--c_compiler/include/function.hpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/c_compiler/include/function.hpp b/c_compiler/include/function.hpp
index d608531..77d1372 100644
--- a/c_compiler/include/function.hpp
+++ b/c_compiler/include/function.hpp
@@ -1,13 +1,10 @@
#ifndef AST_FUNCTION_HPP
#define AST_FUNCTION_HPP
-#include "ast.hpp"
+#include "node.hpp"
-
-struct VarLocation {
- Type* type;
- int32_t stack_position;
-};
+class Declaration;
+class Statement;
class Function : public Node {
@@ -22,7 +19,7 @@ public:
virtual void print() const;
virtual void printxml() const;
- virtual void printasm() const;
+ virtual VariableStackBindings printasm(VariableStackBindings bindings) const;
};