]>
Commit | Line | Data |
---|---|---|
08af01c2 | 1 | -*- Autoconf -*- |
fb8135fa AD |
2 | |
3 | # C M4 Macros for Bison. | |
98744608 | 4 | # Copyright (C) 2002, 2004, 2005, 2006, 2007, 2008-2009 Free Software |
a3764451 | 5 | # Foundation, Inc. |
fb8135fa | 6 | |
f16b0819 | 7 | # This program is free software: you can redistribute it and/or modify |
fb8135fa | 8 | # it under the terms of the GNU General Public License as published by |
f16b0819 | 9 | # the Free Software Foundation, either version 3 of the License, or |
fb8135fa | 10 | # (at your option) any later version. |
f16b0819 | 11 | # |
fb8135fa AD |
12 | # This program is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | # GNU General Public License for more details. | |
f16b0819 | 16 | # |
fb8135fa | 17 | # You should have received a copy of the GNU General Public License |
f16b0819 | 18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
fb8135fa | 19 | |
2a8d363a AD |
20 | ## ---------------- ## |
21 | ## Identification. ## | |
22 | ## ---------------- ## | |
fb8135fa | 23 | |
90b9908d PB |
24 | # b4_comment(TEXT) |
25 | # ---------------- | |
26 | m4_define([b4_comment], [/* m4_bpatsubst([$1], [ | |
27 | ], [ | |
28 | ]) */]) | |
fb8135fa | 29 | |
2a8d363a AD |
30 | # b4_identification |
31 | # ----------------- | |
d9df47b6 JD |
32 | # Depends on individual skeletons to define b4_pure_flag, b4_push_flag, or |
33 | # b4_pull_flag if they use the values of the %define variables api.pure or | |
34 | # api.push_pull. | |
2a8d363a | 35 | m4_define([b4_identification], |
d9df47b6 JD |
36 | [[/* Identify Bison output. */ |
37 | #define YYBISON 1 | |
2a8d363a | 38 | |
55f64b82 | 39 | /* Bison version. */ |
d9df47b6 | 40 | #define YYBISON_VERSION "]b4_version[" |
55f64b82 | 41 | |
2a8d363a | 42 | /* Skeleton name. */ |
d9df47b6 | 43 | #define YYSKELETON_NAME ]b4_skeleton[]m4_ifdef([b4_pure_flag], [[ |
2a8d363a AD |
44 | |
45 | /* Pure parsers. */ | |
d9df47b6 JD |
46 | #define YYPURE ]b4_pure_flag])[]m4_ifdef([b4_push_flag], [[ |
47 | ||
48 | /* Push parsers. */ | |
49 | #define YYPUSH ]b4_push_flag])[]m4_ifdef([b4_pull_flag], [[ | |
50 | ||
51 | /* Pull parsers. */ | |
52 | #define YYPULL ]b4_pull_flag])[ | |
2a8d363a AD |
53 | |
54 | /* Using locations. */ | |
d9df47b6 JD |
55 | #define YYLSP_NEEDED ]b4_locations_flag[ |
56 | ]]) | |
2a8d363a AD |
57 | |
58 | ||
7ec2d4cd AD |
59 | ## ---------------- ## |
60 | ## Default values. ## | |
61 | ## ---------------- ## | |
62 | ||
1b818f33 AD |
63 | # If the %union is not named, its name is YYSTYPE. |
64 | m4_define_default([b4_union_name], [YYSTYPE]) | |
7ec2d4cd | 65 | |
90b9908d PB |
66 | # If the %name-prefix is not given, it is yy. |
67 | m4_define_default([b4_prefix], [yy]) | |
cd48d21d | 68 | |
2a8d363a AD |
69 | ## ------------------------ ## |
70 | ## Pure/impure interfaces. ## | |
71 | ## ------------------------ ## | |
72 | ||
2a8d363a AD |
73 | # b4_user_args |
74 | # ------------ | |
75 | m4_define([b4_user_args], | |
76 | [m4_ifset([b4_parse_param], [, b4_c_args(b4_parse_param)])]) | |
77 | ||
78 | ||
79 | # b4_parse_param | |
80 | # -------------- | |
81 | # If defined, b4_parse_param arrives double quoted, but below we prefer | |
82 | # it to be single quoted. | |
2a8d363a | 83 | m4_define([b4_parse_param], |
7ecec4dd | 84 | b4_parse_param) |
2a8d363a | 85 | |
8f7e3cf9 | 86 | |
613d8952 AD |
87 | # b4_parse_param_for(DECL, FORMAL, BODY) |
88 | # --------------------------------------- | |
89 | # Iterate over the user parameters, binding the declaration to DECL, | |
90 | # the formal name to FORMAL, and evaluating the BODY. | |
91 | m4_define([b4_parse_param_for], | |
92 | [m4_foreach([$1_$2], m4_defn([b4_parse_param]), | |
6bbb2ed5 | 93 | [m4_pushdef([$1], m4_unquote(m4_car($1_$2)))dnl |
613d8952 AD |
94 | m4_pushdef([$2], m4_shift($1_$2))dnl |
95 | $3[]dnl | |
96 | m4_popdef([$2])dnl | |
97 | m4_popdef([$1])dnl | |
98 | ])]) | |
99 | ||
100 | # b4_parse_param_use | |
101 | # ------------------ | |
102 | # `YYUSE' all the parse-params. | |
613d8952 AD |
103 | m4_define([b4_parse_param_use], |
104 | [b4_parse_param_for([Decl], [Formal], [ YYUSE (Formal); | |
105 | ])dnl | |
106 | ]) | |
2a8d363a | 107 | |
8e1687ae | 108 | |
fb8135fa AD |
109 | ## ------------ ## |
110 | ## Data Types. ## | |
111 | ## ------------ ## | |
112 | ||
a762e609 AD |
113 | # b4_int_type(MIN, MAX) |
114 | # --------------------- | |
115 | # Return the smallest int type able to handle numbers ranging from | |
116 | # MIN to MAX (included). | |
117 | m4_define([b4_int_type], | |
118 | [m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char], | |
f1886bb2 | 119 | b4_ints_in($@, [-128], [127]), [1], [signed char], |
a762e609 | 120 | |
779e7ceb PE |
121 | b4_ints_in($@, [0], [65535]), [1], [unsigned short int], |
122 | b4_ints_in($@, [-32768], [32767]), [1], [short int], | |
a762e609 AD |
123 | |
124 | m4_eval([0 <= $1]), [1], [unsigned int], | |
125 | ||
02650b7f | 126 | [int])]) |
a762e609 | 127 | |
f1886bb2 | 128 | |
a762e609 AD |
129 | # b4_int_type_for(NAME) |
130 | # --------------------- | |
131 | # Return the smallest int type able to handle numbers ranging from | |
132 | # `NAME_min' to `NAME_max' (included). | |
133 | m4_define([b4_int_type_for], | |
134 | [b4_int_type($1_min, $1_max)]) | |
fb8135fa | 135 | |
cf98343c AD |
136 | |
137 | ||
8e1687ae PE |
138 | ## ---------## |
139 | ## Values. ## | |
140 | ## ---------## | |
141 | ||
142 | # b4_null | |
143 | --------- | |
144 | # Return a null pointer constant. NULL infringes on the user name | |
145 | # space in C, so use 0 rather than NULL. | |
146 | m4_define([b4_null], [0]) | |
147 | ||
148 | ||
cf98343c AD |
149 | |
150 | ||
fb8135fa AD |
151 | ## ------------------------- ## |
152 | ## Assigning token numbers. ## | |
153 | ## ------------------------- ## | |
154 | ||
155 | # b4_token_define(TOKEN-NAME, TOKEN-NUMBER) | |
156 | # ----------------------------------------- | |
157 | # Output the definition of this token as #define. | |
158 | m4_define([b4_token_define], | |
159 | [#define $1 $2 | |
160 | ]) | |
161 | ||
162 | ||
cf147260 AD |
163 | # b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER) |
164 | # ------------------------------------------------------- | |
165 | # Output the definition of the tokens (if there are) as #defines. | |
166 | m4_define([b4_token_defines], | |
6bbb2ed5 | 167 | [m4_if([$#$1], [1], [], |
cf147260 AD |
168 | [/* Tokens. */ |
169 | m4_map([b4_token_define], [$@])]) | |
170 | ]) | |
171 | ||
172 | ||
fb8135fa AD |
173 | # b4_token_enum(TOKEN-NAME, TOKEN-NUMBER) |
174 | # --------------------------------------- | |
175 | # Output the definition of this token as an enum. | |
176 | m4_define([b4_token_enum], | |
177 | [$1 = $2]) | |
178 | ||
179 | ||
cf147260 AD |
180 | # b4_token_enums(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER) |
181 | # ----------------------------------------------------- | |
182 | # Output the definition of the tokens (if there are) as enums. | |
183 | m4_define([b4_token_enums], | |
6bbb2ed5 | 184 | [m4_if([$#$1], [1], [], |
fb8135fa | 185 | [/* Tokens. */ |
6b8c3254 PE |
186 | #ifndef YYTOKENTYPE |
187 | # define YYTOKENTYPE | |
fb8135fa AD |
188 | /* Put the tokens into the symbol table, so that GDB and other debuggers |
189 | know about them. */ | |
190 | enum yytokentype { | |
191 | m4_map_sep([ b4_token_enum], [, | |
192 | ], | |
02650b7f | 193 | [$@]) |
fb8135fa | 194 | }; |
095b9f05 | 195 | #endif |
cf147260 AD |
196 | ])]) |
197 | ||
198 | ||
199 | # b4_token_enums_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER) | |
200 | # ------------------------------------------------------------- | |
b931235e JD |
201 | # Output the definition of the tokens (if there are any) as enums and, if POSIX |
202 | # Yacc is enabled, as #defines. | |
cf147260 | 203 | m4_define([b4_token_enums_defines], |
b931235e | 204 | [b4_token_enums($@)b4_yacc_if([b4_token_defines($@)], []) |
fb8135fa | 205 | ]) |
4a2a22f4 AD |
206 | |
207 | ||
ae7453f2 | 208 | |
0245f82d AD |
209 | ## --------------------------------------------- ## |
210 | ## Defining C functions in both K&R and ANSI-C. ## | |
211 | ## --------------------------------------------- ## | |
4a2a22f4 AD |
212 | |
213 | ||
1b9c21fb PE |
214 | # b4_modern_c |
215 | # ----------- | |
216 | # A predicate useful in #if to determine whether C is ancient or modern. | |
217 | # | |
218 | # If __STDC__ is defined, the compiler is modern. IBM xlc 7.0 when run | |
219 | # as 'cc' doesn't define __STDC__ (or __STDC_VERSION__) for pedantic | |
220 | # reasons, but it defines __C99__FUNC__ so check that as well. | |
221 | # Microsoft C normally doesn't define these macros, but it defines _MSC_VER. | |
7a0db73e | 222 | # Consider a C++ compiler to be modern if it defines __cplusplus. |
1b9c21fb PE |
223 | # |
224 | m4_define([b4_c_modern], | |
02650b7f PE |
225 | [[(defined __STDC__ || defined __C99__FUNC__ \ |
226 | || defined __cplusplus || defined _MSC_VER)]]) | |
1b9c21fb | 227 | |
0245f82d AD |
228 | # b4_c_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...) |
229 | # ---------------------------------------------------------- | |
4a2a22f4 | 230 | # Declare the function NAME. |
0245f82d | 231 | m4_define([b4_c_function_def], |
1b9c21fb | 232 | [#if b4_c_modern |
0245f82d | 233 | b4_c_ansi_function_def($@) |
4a2a22f4 | 234 | #else |
0245f82d | 235 | $2 |
a3764451 EB |
236 | $1 (b4_c_knr_formal_names(m4_shift2($@))) |
237 | b4_c_knr_formal_decls(m4_shift2($@)) | |
4a2a22f4 AD |
238 | #endif[]dnl |
239 | ]) | |
240 | ||
241 | ||
0245f82d AD |
242 | # b4_c_ansi_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...) |
243 | # --------------------------------------------------------------- | |
244 | # Declare the function NAME in ANSI. | |
245 | m4_define([b4_c_ansi_function_def], | |
246 | [$2 | |
a3764451 | 247 | $1 (b4_c_ansi_formals(m4_shift2($@)))[]dnl |
0245f82d AD |
248 | ]) |
249 | ||
250 | ||
251 | # b4_c_ansi_formals([DECL1, NAME1], ...) | |
252 | # -------------------------------------- | |
4a2a22f4 | 253 | # Output the arguments ANSI-C definition. |
0245f82d | 254 | m4_define([b4_c_ansi_formals], |
6bbb2ed5 EB |
255 | [m4_if([$#], [0], [void], |
256 | [$#$1], [1], [void], | |
02650b7f | 257 | [m4_map_sep([b4_c_ansi_formal], [, ], [$@])])]) |
4a2a22f4 | 258 | |
0245f82d AD |
259 | m4_define([b4_c_ansi_formal], |
260 | [$1]) | |
4a2a22f4 AD |
261 | |
262 | ||
0245f82d AD |
263 | # b4_c_knr_formal_names([DECL1, NAME1], ...) |
264 | # ------------------------------------------ | |
4a2a22f4 | 265 | # Output the argument names. |
0245f82d AD |
266 | m4_define([b4_c_knr_formal_names], |
267 | [m4_map_sep([b4_c_knr_formal_name], [, ], [$@])]) | |
4a2a22f4 | 268 | |
0245f82d | 269 | m4_define([b4_c_knr_formal_name], |
4a2a22f4 AD |
270 | [$2]) |
271 | ||
272 | ||
0245f82d AD |
273 | # b4_c_knr_formal_decls([DECL1, NAME1], ...) |
274 | # ------------------------------------------ | |
4a2a22f4 | 275 | # Output the K&R argument declarations. |
0245f82d AD |
276 | m4_define([b4_c_knr_formal_decls], |
277 | [m4_map_sep([b4_c_knr_formal_decl], | |
02650b7f | 278 | [ |
4a2a22f4 | 279 | ], |
02650b7f | 280 | [$@])]) |
4a2a22f4 | 281 | |
0245f82d AD |
282 | m4_define([b4_c_knr_formal_decl], |
283 | [ $1;]) | |
21964f43 AD |
284 | |
285 | ||
286 | ||
0245f82d AD |
287 | ## ------------------------------------------------------------ ## |
288 | ## Declaring (prototyping) C functions in both K&R and ANSI-C. ## | |
289 | ## ------------------------------------------------------------ ## | |
21964f43 AD |
290 | |
291 | ||
0245f82d AD |
292 | # b4_c_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...) |
293 | # ----------------------------------------------------------- | |
294 | # Declare the function NAME. | |
295 | m4_define([b4_c_function_decl], | |
02650b7f | 296 | [#if defined __STDC__ || defined __cplusplus |
0245f82d AD |
297 | b4_c_ansi_function_decl($@) |
298 | #else | |
299 | $2 $1 (); | |
300 | #endif[]dnl | |
301 | ]) | |
21964f43 AD |
302 | |
303 | ||
0245f82d AD |
304 | # b4_c_ansi_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...) |
305 | # ---------------------------------------------------------------- | |
306 | # Declare the function NAME. | |
307 | m4_define([b4_c_ansi_function_decl], | |
a3764451 | 308 | [$2 $1 (b4_c_ansi_formals(m4_shift2($@)));[]dnl |
0245f82d AD |
309 | ]) |
310 | ||
311 | ||
312 | ||
313 | ||
314 | ## --------------------- ## | |
315 | ## Calling C functions. ## | |
316 | ## --------------------- ## | |
317 | ||
318 | ||
319 | # b4_c_function_call(NAME, RETURN-VALUE, [DECL1, NAME1], ...) | |
320 | # ----------------------------------------------------------- | |
321 | # Call the function NAME with arguments NAME1, NAME2 etc. | |
322 | m4_define([b4_c_function_call], | |
a3764451 | 323 | [$1 (b4_c_args(m4_shift2($@)))[]dnl |
0245f82d AD |
324 | ]) |
325 | ||
326 | ||
327 | # b4_c_args([DECL1, NAME1], ...) | |
328 | # ------------------------------ | |
329 | # Output the arguments NAME1, NAME2... | |
330 | m4_define([b4_c_args], | |
331 | [m4_map_sep([b4_c_arg], [, ], [$@])]) | |
332 | ||
333 | m4_define([b4_c_arg], | |
334 | [$2]) | |
437c2d80 AD |
335 | |
336 | ||
337 | ## ----------- ## | |
338 | ## Synclines. ## | |
339 | ## ----------- ## | |
340 | ||
90b9908d | 341 | # b4_sync_start(LINE, FILE) |
8ec0a172 | 342 | # ----------------------- |
90b9908d | 343 | m4_define([b4_sync_start], [[#]line $1 $2]) |
8ec0a172 | 344 | |
613d8952 AD |
345 | |
346 | ## -------------- ## | |
347 | ## User actions. ## | |
348 | ## -------------- ## | |
349 | ||
8e1687ae PE |
350 | # b4_case(LABEL, STATEMENTS) |
351 | # -------------------------- | |
352 | m4_define([b4_case], | |
353 | [ case $1: | |
354 | $2 | |
355 | break;]) | |
356 | ||
b0400cc6 AD |
357 | # b4_symbol_actions(FILENAME, LINENO, |
358 | # SYMBOL-TAG, SYMBOL-NUM, | |
359 | # SYMBOL-ACTION, SYMBOL-TYPENAME) | |
360 | # ------------------------------------------------- | |
361 | m4_define([b4_symbol_actions], | |
60c82948 PE |
362 | [m4_pushdef([b4_dollar_dollar], |
363 | [m4_ifval([$6], [(yyvaluep->$6)], [(*yyvaluep)])])dnl | |
7bd6c77e | 364 | m4_pushdef([b4_at_dollar], [(*yylocationp)])dnl |
b0400cc6 AD |
365 | case $4: /* $3 */ |
366 | b4_syncline([$2], [$1]) | |
02650b7f | 367 | $5; |
b0400cc6 | 368 | b4_syncline([@oline@], [@ofile@]) |
02650b7f | 369 | break; |
b0400cc6 AD |
370 | m4_popdef([b4_at_dollar])dnl |
371 | m4_popdef([b4_dollar_dollar])dnl | |
372 | ]) | |
373 | ||
374 | ||
14740648 PE |
375 | # b4_yydestruct_generate(FUNCTION-DECLARATOR) |
376 | # ------------------------------------------- | |
b0400cc6 | 377 | # Generate the "yydestruct" function, which declaration is issued using |
14740648 | 378 | # FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C |
b0400cc6 | 379 | # or "b4_c_function_def" for K&R. |
cf147260 | 380 | m4_define_default([b4_yydestruct_generate], |
b0400cc6 AD |
381 | [[/*-----------------------------------------------. |
382 | | Release the memory associated to this symbol. | | |
383 | `-----------------------------------------------*/ | |
384 | ||
12ce2df6 | 385 | /*ARGSUSED*/ |
b0400cc6 AD |
386 | ]$1([yydestruct], |
387 | [static void], | |
a0e68930 | 388 | [[const char *yymsg], [yymsg]], |
7bd6c77e | 389 | [[int yytype], [yytype]], |
4b367315 | 390 | [[YYSTYPE *yyvaluep], [yyvaluep]][]dnl |
327afc7c | 391 | b4_locations_if( [, [[YYLTYPE *yylocationp], [yylocationp]]])[]dnl |
4b367315 | 392 | m4_ifset([b4_parse_param], [, b4_parse_param]))[ |
b0400cc6 | 393 | { |
2a4647a3 | 394 | YYUSE (yyvaluep); |
327afc7c | 395 | ]b4_locations_if([ YYUSE (yylocationp); |
613d8952 AD |
396 | ])dnl |
397 | b4_parse_param_use[]dnl | |
398 | [ | |
a0e68930 AD |
399 | if (!yymsg) |
400 | yymsg = "Deleting"; | |
401 | YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); | |
402 | ||
b0400cc6 AD |
403 | switch (yytype) |
404 | { | |
405 | ]m4_map([b4_symbol_actions], m4_defn([b4_symbol_destructors]))[ | |
406 | default: | |
02650b7f | 407 | break; |
b0400cc6 AD |
408 | } |
409 | }]dnl | |
410 | ]) | |
7bd6c77e AD |
411 | |
412 | ||
a0af42fc AD |
413 | # b4_yy_symbol_print_generate(FUNCTION-DECLARATOR) |
414 | # ------------------------------------------------ | |
415 | # Generate the "yy_symbol_print" function, which declaration is issued using | |
14740648 | 416 | # FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C |
7bd6c77e | 417 | # or "b4_c_function_def" for K&R. |
a0af42fc AD |
418 | m4_define_default([b4_yy_symbol_print_generate], |
419 | [[ | |
420 | /*--------------------------------. | |
14740648 PE |
421 | | Print this symbol on YYOUTPUT. | |
422 | `--------------------------------*/ | |
7bd6c77e | 423 | |
12ce2df6 | 424 | /*ARGSUSED*/ |
a0af42fc | 425 | ]$1([yy_symbol_value_print], |
7bd6c77e | 426 | [static void], |
02650b7f PE |
427 | [[FILE *yyoutput], [yyoutput]], |
428 | [[int yytype], [yytype]], | |
50cce58e PE |
429 | [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl |
430 | b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl | |
4b367315 | 431 | m4_ifset([b4_parse_param], [, b4_parse_param]))[ |
7bd6c77e | 432 | { |
05449a2c JD |
433 | if (!yyvaluep) |
434 | return; | |
327afc7c | 435 | ]b4_locations_if([ YYUSE (yylocationp); |
7bd6c77e | 436 | ])dnl |
613d8952 | 437 | b4_parse_param_use[]dnl |
a0af42fc | 438 | [# ifdef YYPRINT |
619404e3 AD |
439 | if (yytype < YYNTOKENS) |
440 | YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); | |
c66dfadd PE |
441 | # else |
442 | YYUSE (yyoutput); | |
619404e3 | 443 | # endif |
7bd6c77e AD |
444 | switch (yytype) |
445 | { | |
3fc16193 AD |
446 | ]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl |
447 | [ default: | |
02650b7f | 448 | break; |
7bd6c77e | 449 | } |
a0af42fc AD |
450 | } |
451 | ||
452 | ||
453 | /*--------------------------------. | |
454 | | Print this symbol on YYOUTPUT. | | |
455 | `--------------------------------*/ | |
456 | ||
457 | ]$1([yy_symbol_print], | |
458 | [static void], | |
02650b7f PE |
459 | [[FILE *yyoutput], [yyoutput]], |
460 | [[int yytype], [yytype]], | |
50cce58e PE |
461 | [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl |
462 | b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl | |
a0af42fc AD |
463 | m4_ifset([b4_parse_param], [, b4_parse_param]))[ |
464 | { | |
465 | if (yytype < YYNTOKENS) | |
466 | YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); | |
467 | else | |
468 | YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); | |
469 | ||
327afc7c | 470 | ]b4_locations_if([ YY_LOCATION_PRINT (yyoutput, *yylocationp); |
a0af42fc AD |
471 | YYFPRINTF (yyoutput, ": "); |
472 | ])dnl | |
473 | [ yy_symbol_value_print (yyoutput, yytype, yyvaluep]dnl | |
327afc7c | 474 | b4_locations_if([, yylocationp])[]b4_user_args[); |
2f4f028d | 475 | YYFPRINTF (yyoutput, ")"); |
4b367315 AD |
476 | }]dnl |
477 | ]) |