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.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/c_compiler/include/function.hpp b/c_compiler/include/function.hpp
index f9f4fa0..2227f52 100644
--- a/c_compiler/include/function.hpp
+++ b/c_compiler/include/function.hpp
@@ -27,9 +27,9 @@ public:
virtual void print() const;
virtual void printXml() const;
- virtual VariableStackBindings printAsm(VariableStackBindings bindings, int& label_count) const;
+ virtual Bindings printAsm(Bindings bindings, int& label_count) const;
- void printParameterAsm(VariableStackBindings& bindings, int& frame_offset) const;
+ void printParameterAsm(Bindings& bindings, int& frame_offset) const;
void countParameters(int& parameter_count) const;
};