diff options
Diffstat (limited to 'gcc/go/gofrontend/backend.h')
-rw-r--r-- | gcc/go/gofrontend/backend.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/go/gofrontend/backend.h b/gcc/go/gofrontend/backend.h index b5071ae..01540b0 100644 --- a/gcc/go/gofrontend/backend.h +++ b/gcc/go/gofrontend/backend.h @@ -377,6 +377,10 @@ class Backend call_expression(Bexpression* fn, const std::vector<Bexpression*>& args, Bexpression* static_chain, Location) = 0; + // Return an expression that allocates SIZE bytes on the stack. + virtual Bexpression* + stack_allocation_expression(int64_t size, Location) = 0; + // Statements. // Create an error statement. This is used for cases which should |