aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/function.hpp
diff options
context:
space:
mode:
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;
};