comparison gcc/c-family/c-pretty-print.h @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* Various declarations for the C and C++ pretty-printers. 1 /* Various declarations for the C and C++ pretty-printers.
2 Copyright (C) 2002-2017 Free Software Foundation, Inc. 2 Copyright (C) 2002-2018 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net> 3 Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
4 4
5 This file is part of GCC. 5 This file is part of GCC.
6 6
7 GCC is free software; you can redistribute it and/or modify it under 7 GCC is free software; you can redistribute it and/or modify it under
126 /* Expressions. */ 126 /* Expressions. */
127 void pp_c_logical_or_expression (c_pretty_printer *, tree); 127 void pp_c_logical_or_expression (c_pretty_printer *, tree);
128 void pp_c_expression_list (c_pretty_printer *, tree); 128 void pp_c_expression_list (c_pretty_printer *, tree);
129 void pp_c_constructor_elts (c_pretty_printer *, vec<constructor_elt, va_gc> *); 129 void pp_c_constructor_elts (c_pretty_printer *, vec<constructor_elt, va_gc> *);
130 void pp_c_call_argument_list (c_pretty_printer *, tree); 130 void pp_c_call_argument_list (c_pretty_printer *, tree);
131 void pp_c_type_cast (c_pretty_printer *, tree);
131 void pp_c_cast_expression (c_pretty_printer *, tree); 132 void pp_c_cast_expression (c_pretty_printer *, tree);
132 void pp_c_init_declarator (c_pretty_printer *, tree); 133 void pp_c_init_declarator (c_pretty_printer *, tree);
133 void pp_c_ws_string (c_pretty_printer *, const char *); 134 void pp_c_ws_string (c_pretty_printer *, const char *);
134 void pp_c_identifier (c_pretty_printer *, const char *); 135 void pp_c_identifier (c_pretty_printer *, const char *);
135 void pp_c_string_literal (c_pretty_printer *, tree); 136 void pp_c_string_literal (c_pretty_printer *, tree);
137 void pp_c_integer_constant (c_pretty_printer *, tree);
136 138
137 void print_c_tree (FILE *file, tree t); 139 void print_c_tree (FILE *file, tree t);
138 140
139 #endif /* GCC_C_PRETTY_PRINTER */ 141 #endif /* GCC_C_PRETTY_PRINTER */