aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/function.hpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-24 23:43:45 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-24 23:43:45 +0000
commite027bef26e25af8e3998d06942872bdcb36ee551 (patch)
tree0e289d8a90a64cd8e0d935aa8c7de784ae677cc8 /c_compiler/include/function.hpp
parentb8738b8d582cba01aa1e944426b0251c9c42ff37 (diff)
downloadCompiler-e027bef26e25af8e3998d06942872bdcb36ee551.tar.gz
Compiler-e027bef26e25af8e3998d06942872bdcb36ee551.zip
Fixing stuff
Diffstat (limited to 'c_compiler/include/function.hpp')
-rw-r--r--c_compiler/include/function.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/c_compiler/include/function.hpp b/c_compiler/include/function.hpp
index 38e1898..86b81af 100644
--- a/c_compiler/include/function.hpp
+++ b/c_compiler/include/function.hpp
@@ -29,8 +29,7 @@ public:
virtual void printXml() const;
virtual VariableStackBindings printAsm(VariableStackBindings bindings, unsigned& label_count) const;
- void printParameterAsm(VariableStackBindings& bindings, unsigned& stack_offset,
- unsigned& frame_offset) const;
+ void printParameterAsm(VariableStackBindings& bindings, unsigned& frame_offset) const;
void countParameters(unsigned& parameter_count) const;
};