From 16c1c80843a7115253b5f2844c3cda9089a72232 Mon Sep 17 00:00:00 2001 From: fche Date: Sat, 25 Feb 2006 21:05:46 +0000 Subject: 2006-02-25 Frank Ch. Eigler * translate.cxx (var::init): Don't crush string module_params. (emit_global_param): New function, forked out of emit_global, to put module_param calls at the bottom of C file. * translate.h: Corresponding changes. --- translate.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'translate.h') diff --git a/translate.h b/translate.h index 1c6dc9f6..f756ee62 100644 --- a/translate.h +++ b/translate.h @@ -70,6 +70,9 @@ struct unparser // static TYPE global_NAME; // static rwlock_t global_NAME_lock; + virtual void emit_global_param (vardecl* v) = 0; + // module_param_... -- at end of file + virtual void emit_functionsig (functiondecl* v) = 0; // static void function_NAME (context* c); -- cgit