aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/function.hpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-26 03:03:48 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-03-26 03:03:48 +0100
commit19896f53d80deadcf09d3a1256524cc6f2e4adb6 (patch)
treebb3682e25e1f07b8c4790038403c0bd8d056e23d /c_compiler/include/function.hpp
parentd08786b22e454e177e0642b5f9e4b19a12a891b1 (diff)
downloadCompiler-19896f53d80deadcf09d3a1256524cc6f2e4adb6.tar.gz
Compiler-19896f53d80deadcf09d3a1256524cc6f2e4adb6.zip
normally other types should be working now
Diffstat (limited to 'c_compiler/include/function.hpp')
-rw-r--r--c_compiler/include/function.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/c_compiler/include/function.hpp b/c_compiler/include/function.hpp
index 86b81af..f9f4fa0 100644
--- a/c_compiler/include/function.hpp
+++ b/c_compiler/include/function.hpp
@@ -27,10 +27,10 @@ public:
virtual void print() const;
virtual void printXml() const;
- virtual VariableStackBindings printAsm(VariableStackBindings bindings, unsigned& label_count) const;
+ virtual VariableStackBindings printAsm(VariableStackBindings bindings, int& label_count) const;
- void printParameterAsm(VariableStackBindings& bindings, unsigned& frame_offset) const;
- void countParameters(unsigned& parameter_count) const;
+ void printParameterAsm(VariableStackBindings& bindings, int& frame_offset) const;
+ void countParameters(int& parameter_count) const;
};