+2005-02-01 James A. Morrison <phython@gcc.gnu.org>
+
+ * parse.y: Reformat comments.
+ * treetree.c: Likewise.
+ * treetree.h: Likewise.
+
2004-10-24 James A. Morrison <phython@gcc.gnu.org>
* treetree.c (tree_code_generate_return): Wrap param declaration in
/* Last parm if void indicates fixed length list (as opposed to
printf style va_* list). */
type_list = tree_cons (NULL_TREE, void_type_node, type_list);
+
/* The back end needs them in reverse order. */
type_list = nreverse (type_list);
allocate_struct_function (fn_decl);
cfun->function_end_locus = loc;
-
/* Dump the original tree to a file. */
dump_function (TDI_original, fn_decl);
cgraph_finalize_function (fn_decl, false);
}
-/*
- Create a variable.
+/* Create a variable.
The storage class is STORAGE_CLASS (eg LOCAL).
The name is CHARS/LENGTH.
The type is EXPRESSION_TYPE (eg UNSIGNED_TYPE).
- The init tree is INIT.
-*/
+ The init tree is INIT. */
tree
tree_code_create_variable (unsigned int storage_class,
-/*
-
- TREELANG Compiler definitions for interfacing to treetree.c
+/* TREELANG Compiler definitions for interfacing to treetree.c
(compiler back end interface).
- Copyright (C) 1986, 87, 89, 92-96, 1997, 1999, 2000, 2001, 2002, 2003, 2004
- Free Software Foundation, Inc.
+ Copyright (C) 1986, 87, 89, 92-96, 1997, 1999, 2000, 2001, 2002, 2003,
+ 2004, 2005 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
---------------------------------------------------------------------------
Written by Tim Josling 1999, 2000, 2001, based in part on other
- parts of the GCC compiler.
-
- */
+ parts of the GCC compiler. */
tree tree_code_init_parameters (void);
tree tree_code_add_parameter (tree list, tree proto_exp, tree exp);
void push_var_level (void);
void pop_var_level (void);
const char* get_string (const char *s, size_t l);
-
-