Advertisement
ptkrisada

gengtype-lex.txt

Aug 27th, 2019
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 29.79 KB | None | 0 0
  1. Index: gengtype-lex.c
  2. ===================================================================
  3. RCS file: /cvsroot/src/external/gpl3/gcc/dist/gcc/gengtype-lex.c,v
  4. retrieving revision 1.10
  5. diff -r1.10 gengtype-lex.c
  6. 2c2
  7. < #line 2 "gengtype-lex.c"
  8. ---
  9. > #line 1 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.c"
  10. 4c4
  11. < #line 4 "gengtype-lex.c"
  12. ---
  13. > #line 3 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.c"
  14. 12,13c12,13
  15. < #define YY_FLEX_MINOR_VERSION 5
  16. < #define YY_FLEX_SUBMINOR_VERSION 37
  17. ---
  18. > #define YY_FLEX_MINOR_VERSION 6
  19. > #define YY_FLEX_SUBMINOR_VERSION 4
  20. 20a21,23
  21. > #ifdef _LIBC
  22. > #include "namespace.h"
  23. > #endif
  24. 27a31,32
  25. > /*    $NetBSD: flexint.h,v 1.3 2018/12/23 16:27:17 christos Exp $ */
  26. >
  27. 87a93,96
  28. > #ifndef SIZE_MAX
  29. > #define SIZE_MAX               (~(size_t)0)
  30. > #endif
  31. >
  32. 92,102c101
  33. < #ifdef __cplusplus
  34. <
  35. < /* The "const" storage-class-modifier is valid. */
  36. < #define YY_USE_CONST
  37. <
  38. < #else /* ! __cplusplus */
  39. <
  40. < /* C99 requires __STDC__ to be defined as 1. */
  41. < #if defined (__STDC__)
  42. <
  43. < #define YY_USE_CONST
  44. ---
  45. > /* begin standard C++ headers. */
  46. 104,107c103
  47. < #endif    /* defined (__STDC__) */
  48. < #endif    /* ! __cplusplus */
  49. <
  50. < #ifdef YY_USE_CONST
  51. ---
  52. > /* TODO: this is always defined, so inline it */
  53. 108a105,107
  54. >
  55. > #if defined(__GNUC__) && __GNUC__ >= 3
  56. > #define yynoreturn __attribute__((__noreturn__))
  57. 110c109
  58. < #define yyconst
  59. ---
  60. > #define yynoreturn
  61. 116,119c115,116
  62. < /* Promotes a possibly negative, possibly signed char to an unsigned
  63. <  * integer for use as an array index.  If the signed char is negative,
  64. <  * we want to instead treat it as an 8-bit unsigned char, hence the
  65. <  * double cast.
  66. ---
  67. > /* Promotes a possibly negative, possibly signed char to an
  68. >  *   integer in range [0..255] for use as an array index.
  69. 121c118
  70. < #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
  71. ---
  72. > #define YY_SC_TO_UI(c) ((YY_CHAR) (c))
  73. 128d124
  74. <
  75. 135d130
  76. <
  77. 138d132
  78. <
  79. 140,141c134
  80. < #define YY_NEW_FILE yyrestart(yyin  )
  81. <
  82. ---
  83. > #define YY_NEW_FILE yyrestart( yyin  )
  84. 145a139,145
  85. > #ifdef __ia64__
  86. > /* On IA-64, the buffer size is 16k, not 8k.
  87. >  * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
  88. >  * Ditto for the __ia64__ case accordingly.
  89. >  */
  90. > #define YY_BUF_SIZE 32768
  91. > #else
  92. 146a147
  93. > #endif /* __ia64__ */
  94. 170c171
  95. <
  96. ---
  97. >    
  98. 171a173
  99. >     #define YY_LINENO_REWIND_TO(ptr)
  100. 186d187
  101. <
  102. 201c202
  103. <   int yy_buf_size;
  104. ---
  105. >   size_t yy_buf_size;
  106. 206c207
  107. <   int yy_n_chars;
  108. ---
  109. >   size_t yy_n_chars;
  110. 229c230
  111. <    
  112. ---
  113. >
  114. 257c258
  115. < static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
  116. ---
  117. > static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
  118. 268d268
  119. <
  120. 276c276
  121. < static int yy_n_chars;        /* number of characters read into yy_ch_buf */
  122. ---
  123. > static yy_size_t yy_n_chars;      /* number of characters read into yy_ch_buf */
  124. 280c280
  125. < static char *yy_c_buf_p = (char *) 0;
  126. ---
  127. > static char *yy_c_buf_p = NULL;
  128. 289,309c289,308
  129. < void yyrestart (FILE *input_file  );
  130. < void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
  131. < YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
  132. < void yy_delete_buffer (YY_BUFFER_STATE b  );
  133. < void yy_flush_buffer (YY_BUFFER_STATE b  );
  134. < void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
  135. < void yypop_buffer_state (void );
  136. <
  137. < static void yyensure_buffer_stack (void );
  138. < static void yy_load_buffer_state (void );
  139. < static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );
  140. <
  141. < #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
  142. <
  143. < YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
  144. < YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
  145. < YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len  );
  146. <
  147. < void *yyalloc (yy_size_t  );
  148. < void *yyrealloc (void *,yy_size_t  );
  149. < void yyfree (void *  );
  150. ---
  151. > void yyrestart ( FILE *input_file  );
  152. > void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer  );
  153. > YY_BUFFER_STATE yy_create_buffer ( FILE *file, yy_size_t size  );
  154. > void yy_delete_buffer ( YY_BUFFER_STATE b  );
  155. > void yy_flush_buffer ( YY_BUFFER_STATE b  );
  156. > void yypush_buffer_state ( YY_BUFFER_STATE new_buffer  );
  157. > void yypop_buffer_state ( void );
  158. >
  159. > static void yyensure_buffer_stack ( void );
  160. > static void yy_load_buffer_state ( void );
  161. > static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file  );
  162. > #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER )
  163. >
  164. > YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size  );
  165. > YY_BUFFER_STATE yy_scan_string ( const char *yy_str  );
  166. > YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, yy_size_t len  );
  167. >
  168. > void *yyalloc ( yy_size_t  );
  169. > void *yyrealloc ( void *, yy_size_t  );
  170. > void yyfree ( void *  );
  171. 312d310
  172. <
  173. 318c316
  174. <             yy_create_buffer(yyin,YY_BUF_SIZE ); \
  175. ---
  176. >             yy_create_buffer( yyin, YY_BUF_SIZE ); \
  177. 322d319
  178. <
  179. 328c325
  180. <             yy_create_buffer(yyin,YY_BUF_SIZE ); \
  181. ---
  182. >             yy_create_buffer( yyin, YY_BUF_SIZE ); \
  183. 332d328
  184. <
  185. 337c333
  186. < #define yywrap() 1
  187. ---
  188. > #define yywrap() (/*CONSTCOND*/1)
  189. 338a335
  190. > typedef flex_uint8_t YY_CHAR;
  191. 340,342c337
  192. < typedef unsigned char YY_CHAR;
  193. <
  194. < FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
  195. ---
  196. > FILE *yyin = NULL, *yyout = NULL;
  197. 347d341
  198. <
  199. 350a345,347
  200. > #ifdef yytext_ptr
  201. > #undef yytext_ptr
  202. > #endif
  203. 353,356c350,353
  204. < static yy_state_type yy_get_previous_state (void );
  205. < static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
  206. < static int yy_get_next_buffer (void );
  207. < static void yy_fatal_error (yyconst char msg[]  );
  208. ---
  209. > static yy_state_type yy_get_previous_state ( void );
  210. > static yy_state_type yy_try_NUL_trans ( yy_state_type current_state  );
  211. > static int yy_get_next_buffer ( void );
  212. > static void yynoreturn yy_fatal_error ( const char* msg  );
  213. 363c360
  214. <   yyleng = (int) (yy_cp - yy_bp); \
  215. ---
  216. >   yyleng = (yy_size_t)(yy_cp - yy_bp); \
  217. 367d363
  218. <
  219. 377c373
  220. < static yyconst flex_int16_t yy_accept[561] =
  221. ---
  222. > static const flex_int16_t yy_accept[561] =
  223. 442c438
  224. < static yyconst flex_int32_t yy_ec[256] =
  225. ---
  226. > static const YY_CHAR yy_ec[256] =
  227. 474c470
  228. < static yyconst flex_int32_t yy_meta[68] =
  229. ---
  230. > static const YY_CHAR yy_meta[68] =
  231. 485c481
  232. < static yyconst flex_int16_t yy_base[608] =
  233. ---
  234. > static const flex_int16_t yy_base[608] =
  235. 556c552
  236. < static yyconst flex_int16_t yy_def[608] =
  237. ---
  238. > static const flex_int16_t yy_def[608] =
  239. 627c623
  240. < static yyconst flex_int16_t yy_nxt[2471] =
  241. ---
  242. > static const flex_int16_t yy_nxt[2471] =
  243. 902c898
  244. < static yyconst flex_int16_t yy_chk[2471] =
  245. ---
  246. > static const flex_int16_t yy_chk[2471] =
  247. 1191c1187
  248. < #line 1 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  249. ---
  250. > #line 1 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  251. 1212c1208
  252. < #line 24 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  253. ---
  254. > #line 24 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  255. 1240c1236,1238
  256. < /* Include '::' in identifiers to capture C++ scope qualifiers.  */
  257. ---
  258. > #line 1235 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.c"
  259. > #line 59 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  260. >     /* Include '::' in identifiers to capture C++ scope qualifiers.  */
  261. 1242c1240
  262. < #line 1242 "gengtype-lex.c"
  263. ---
  264. > #line 1239 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.c"
  265. 1261c1259
  266. < static int yy_init_globals (void );
  267. ---
  268. > static int yy_init_globals ( void );
  269. 1266c1264
  270. < int yylex_destroy (void );
  271. ---
  272. > int yylex_destroy ( void );
  273. 1268c1266
  274. < int yyget_debug (void );
  275. ---
  276. > int yyget_debug ( void );
  277. 1270c1268
  278. < void yyset_debug (int debug_flag  );
  279. ---
  280. > void yyset_debug ( int debug_flag  );
  281. 1272c1270
  282. < YY_EXTRA_TYPE yyget_extra (void );
  283. ---
  284. > YY_EXTRA_TYPE yyget_extra ( void );
  285. 1274c1272
  286. < void yyset_extra (YY_EXTRA_TYPE user_defined  );
  287. ---
  288. > void yyset_extra ( YY_EXTRA_TYPE user_defined  );
  289. 1276c1274
  290. < FILE *yyget_in (void );
  291. ---
  292. > FILE *yyget_in ( void );
  293. 1278c1276
  294. < void yyset_in  (FILE * in_str  );
  295. ---
  296. > void yyset_in  ( FILE * _in_str  );
  297. 1280c1278
  298. < FILE *yyget_out (void );
  299. ---
  300. > FILE *yyget_out ( void );
  301. 1282c1280
  302. < void yyset_out  (FILE * out_str  );
  303. ---
  304. > void yyset_out  ( FILE * _out_str  );
  305. 1284c1282
  306. < yy_size_t yyget_leng (void );
  307. ---
  308. >           yy_size_t yyget_leng ( void );
  309. 1286c1284
  310. < char *yyget_text (void );
  311. ---
  312. > char *yyget_text ( void );
  313. 1288c1286
  314. < int yyget_lineno (void );
  315. ---
  316. > int yyget_lineno ( void );
  317. 1290c1288
  318. < void yyset_lineno (int line_number  );
  319. ---
  320. > void yyset_lineno ( int _line_number  );
  321. 1298c1296
  322. < extern "C" int yywrap (void );
  323. ---
  324. > extern "C" int yywrap ( void );
  325. 1300c1298
  326. < extern int yywrap (void );
  327. ---
  328. > extern int yywrap ( void );
  329. 1303a1302,1305
  330. > #ifndef YY_NO_UNPUT
  331. >    
  332. > #endif
  333. >
  334. 1305c1307
  335. < static void yy_flex_strncpy (char *,yyconst char *,int );
  336. ---
  337. > static void yy_flex_strncpy ( char *, const char *, int );
  338. 1309c1311
  339. < static int yy_flex_strlen (yyconst char * );
  340. ---
  341. > static int yy_flex_strlen ( const char * );
  342. 1313d1314
  343. <
  344. 1315c1316
  345. < static int yyinput (void );
  346. ---
  347. > static int yyinput ( void );
  348. 1317c1318
  349. < static int input (void );
  350. ---
  351. > static int input ( void );
  352. 1323a1325,1328
  353. > #ifdef __ia64__
  354. > /* On IA-64, the buffer size is 16k, not 8k */
  355. > #define YY_READ_BUF_SIZE 16384
  356. > #else
  357. 1324a1330
  358. > #endif /* __ia64__ */
  359. 1332c1338
  360. < #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
  361. ---
  362. > #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
  363. 1343c1349
  364. <       size_t n; \
  365. ---
  366. >       yy_size_t n; \
  367. 1356c1362
  368. <       while ( (result = (int) fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
  369. ---
  370. >       while ( (result = fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
  371. 1411c1417
  372. < #define YY_BREAK break;
  373. ---
  374. > #define YY_BREAK /*LINTED*/break;
  375. 1424,1426c1430,1432
  376. <   register yy_state_type yy_current_state;
  377. <   register char *yy_cp, *yy_bp;
  378. <   register int yy_act;
  379. ---
  380. >   yy_state_type yy_current_state;
  381. >   char *yy_cp, *yy_bp;
  382. >   int yy_act;
  383. 1428,1440d1433
  384. < #line 66 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  385. <
  386. <   /* Do this on entry to yylex():  */
  387. <   *yylval = 0;
  388. <   if (lexer_toplevel_done)
  389. <     {
  390. <       BEGIN(INITIAL);
  391. <       lexer_toplevel_done = 0;
  392. <     }
  393. <
  394. <   /* Things we look for in skipping mode: */
  395. < #line 1439 "gengtype-lex.c"
  396. <
  397. 1461c1454
  398. <               yy_create_buffer(yyin,YY_BUF_SIZE );
  399. ---
  400. >               yy_create_buffer( yyin, YY_BUF_SIZE );
  401. 1464c1457
  402. <       yy_load_buffer_state( );
  403. ---
  404. >       yy_load_buffer_state(  );
  405. 1467c1460,1474
  406. <   while ( 1 )     /* loops until end-of-file is reached */
  407. ---
  408. >   {
  409. > #line 67 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  410. >
  411. >   /* Do this on entry to yylex():  */
  412. >   *yylval = 0;
  413. >   if (lexer_toplevel_done)
  414. >     {
  415. >       BEGIN(INITIAL);
  416. >       lexer_toplevel_done = 0;
  417. >     }
  418. >
  419. >   /* Things we look for in skipping mode: */
  420. > #line 1471 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.c"
  421. >
  422. >   while ( /*CONSTCOND*/1 )        /* loops until end-of-file is reached */
  423. 1484c1491
  424. <           register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
  425. ---
  426. >           YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
  427. 1494c1501
  428. <                   yy_c = yy_meta[(unsigned int) yy_c];
  429. ---
  430. >                   yy_c = yy_meta[yy_c];
  431. 1496c1503
  432. <           yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c];
  433. ---
  434. >           yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  435. 1521a1529
  436. > YY_LINENO_REWIND_TO(yy_cp - 1);
  437. 1525c1533
  438. < #line 77 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  439. ---
  440. > #line 78 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  441. 1533a1542
  442. > YY_LINENO_REWIND_TO(yy_cp - 1);
  443. 1537c1546
  444. < #line 81 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  445. ---
  446. > #line 82 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  447. 1545a1555
  448. > YY_LINENO_REWIND_TO(yy_cp - 1);
  449. 1549c1559
  450. < #line 85 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  451. ---
  452. > #line 86 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  453. 1557a1568
  454. > YY_LINENO_REWIND_TO(yy_cp - 1);
  455. 1561c1572
  456. < #line 89 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  457. ---
  458. > #line 90 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  459. 1569a1581
  460. > YY_LINENO_REWIND_TO(yy_cp - 1);
  461. 1573c1585
  462. < #line 93 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  463. ---
  464. > #line 94 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  465. 1581a1594
  466. > YY_LINENO_REWIND_TO(yy_cp - 1);
  467. 1585c1598
  468. < #line 97 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  469. ---
  470. > #line 98 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  471. 1596c1609
  472. < #line 105 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  473. ---
  474. > #line 106 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  475. 1602c1615
  476. < #line 106 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  477. ---
  478. > #line 107 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  479. 1608c1621
  480. < #line 108 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  481. ---
  482. > #line 109 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  483. 1614c1627
  484. < #line 109 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  485. ---
  486. > #line 110 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  487. 1619a1633
  488. > YY_LINENO_REWIND_TO(yy_bp + 5);
  489. 1623c1637
  490. < #line 111 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  491. ---
  492. > #line 112 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  493. 1628a1643
  494. > YY_LINENO_REWIND_TO(yy_cp - 1);
  495. 1631c1646
  496. < #line 113 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  497. ---
  498. > #line 114 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  499. 1634c1649
  500. < #line 114 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  501. ---
  502. > #line 115 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  503. 1637c1652
  504. < #line 115 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  505. ---
  506. > #line 116 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  507. 1641c1656
  508. < #line 115 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  509. ---
  510. > #line 116 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  511. 1649a1665
  512. > YY_LINENO_REWIND_TO(yy_bp + 3);
  513. 1653c1669
  514. < #line 119 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  515. ---
  516. > #line 120 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  517. 1658a1675
  518. > YY_LINENO_REWIND_TO(yy_bp + 5);
  519. 1662c1679
  520. < #line 120 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  521. ---
  522. > #line 121 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  523. 1667a1685
  524. > YY_LINENO_REWIND_TO(yy_bp + 6);
  525. 1671c1689
  526. < #line 121 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  527. ---
  528. > #line 122 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  529. 1676a1695
  530. > YY_LINENO_REWIND_TO(yy_bp + 5);
  531. 1680c1699
  532. < #line 122 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  533. ---
  534. > #line 123 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  535. 1685a1705
  536. > YY_LINENO_REWIND_TO(yy_bp + 7);
  537. 1689c1709
  538. < #line 123 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  539. ---
  540. > #line 124 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  541. 1694a1715
  542. > YY_LINENO_REWIND_TO(yy_bp + 4);
  543. 1698c1719
  544. < #line 124 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  545. ---
  546. > #line 125 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  547. 1703a1725
  548. > YY_LINENO_REWIND_TO(yy_bp + 9);
  549. 1707c1729
  550. < #line 125 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  551. ---
  552. > #line 126 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  553. 1712a1735
  554. > YY_LINENO_REWIND_TO(yy_bp + 10);
  555. 1716c1739
  556. < #line 126 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  557. ---
  558. > #line 127 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  559. 1721a1745
  560. > YY_LINENO_REWIND_TO(yy_bp + 4);
  561. 1725c1749
  562. < #line 127 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  563. ---
  564. > #line 128 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  565. 1730c1754
  566. < #line 128 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  567. ---
  568. > #line 129 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  569. 1735a1760
  570. > YY_LINENO_REWIND_TO(yy_cp - 1);
  571. 1738c1763
  572. < #line 131 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  573. ---
  574. > #line 132 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  575. 1742c1767
  576. < #line 131 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  577. ---
  578. > #line 132 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  579. 1756a1782
  580. > YY_LINENO_REWIND_TO(yy_cp - 1);
  581. 1760c1786
  582. < #line 142 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  583. ---
  584. > #line 143 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  585. 1769c1795
  586. < #line 147 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  587. ---
  588. > #line 148 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  589. 1779c1805
  590. < #line 152 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  591. ---
  592. > #line 153 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  593. 1788c1814
  594. < #line 156 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  595. ---
  596. > #line 157 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  597. 1796c1822
  598. < #line 161 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  599. ---
  600. > #line 162 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  601. 1801c1827
  602. < #line 162 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  603. ---
  604. > #line 163 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  605. 1808c1834
  606. < #line 165 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  607. ---
  608. > #line 166 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  609. 1813c1839
  610. < #line 167 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  611. ---
  612. > #line 168 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  613. 1821c1847
  614. < #line 172 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  615. ---
  616. > #line 173 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  617. 1827c1853
  618. < #line 173 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  619. ---
  620. > #line 174 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  621. 1833c1859
  622. < #line 174 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  623. ---
  624. > #line 175 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  625. 1837c1863
  626. < #line 176 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  627. ---
  628. > #line 177 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  629. 1840c1866
  630. < #line 177 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  631. ---
  632. > #line 178 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  633. 1844c1870
  634. < #line 177 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  635. ---
  636. > #line 178 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  637. 1850c1876
  638. < #line 178 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  639. ---
  640. > #line 179 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  641. 1855a1882
  642. > YY_LINENO_REWIND_TO(yy_bp + 1);
  643. 1859c1886
  644. < #line 179 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  645. ---
  646. > #line 180 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  647. 1866c1893
  648. < #line 182 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  649. ---
  650. > #line 183 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  651. 1870c1897
  652. < #line 184 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  653. ---
  654. > #line 185 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  655. 1873c1900
  656. < #line 184 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  657. ---
  658. > #line 185 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  659. 1878a1906
  660. > YY_LINENO_REWIND_TO(yy_bp + 1);
  661. 1882c1910
  662. < #line 185 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  663. ---
  664. > #line 186 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  665. 1888c1916
  666. < #line 188 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  667. ---
  668. > #line 189 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  669. 1893c1921
  670. < #line 189 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  671. ---
  672. > #line 190 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  673. 1897c1925
  674. < #line 192 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  675. ---
  676. > #line 193 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  677. 1900c1928
  678. < #line 192 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  679. ---
  680. > #line 193 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  681. 1909c1937
  682. < #line 197 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  683. ---
  684. > #line 198 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  685. 1914c1942
  686. < #line 199 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  687. ---
  688. > #line 200 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
  689. 1917c1945
  690. < #line 1917 "gengtype-lex.c"
  691. ---
  692. > #line 1944 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.c"
  693. 1999c2027
  694. <               if ( yywrap( ) )
  695. ---
  696. >               if ( yywrap(  ) )
  697. 2051a2080
  698. >   } /* end of user's declarations */
  699. 2063,2065c2092,2094
  700. <       register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
  701. <   register char *source = (yytext_ptr);
  702. <   register int number_to_move, i;
  703. ---
  704. >       char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
  705. >   char *source = (yytext_ptr);
  706. >   yy_size_t number_to_move, i;
  707. 2094c2123
  708. <   number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
  709. ---
  710. >   number_to_move = (yy_size_t) ((yy_c_buf_p) - (yytext_ptr) - 1);
  711. 2107c2136
  712. <           int num_to_read =
  713. ---
  714. >           yy_size_t num_to_read =
  715. 2130c2159,2160
  716. <                   yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );
  717. ---
  718. >                   yyrealloc( (void *) b->yy_ch_buf,
  719. >                            (yy_size_t) (b->yy_buf_size + 2)  );
  720. 2134c2164
  721. <               b->yy_ch_buf = 0;
  722. ---
  723. >               b->yy_ch_buf = NULL;
  724. 2142c2172
  725. <           num_to_read = (int) YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
  726. ---
  727. >           num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
  728. 2162c2192
  729. <           yyrestart(yyin  );
  730. ---
  731. >           yyrestart( yyin  );
  732. 2176c2206
  733. <   if ((int) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
  734. ---
  735. >   if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
  736. 2178,2179c2208,2210
  737. <       int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
  738. <       YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size  );
  739. ---
  740. >       yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
  741. >       YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
  742. >           (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size  );
  743. 2181a2213,2214
  744. >       /* "- 2" to take care of EOB's */
  745. >       YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (yy_size_t) (new_size - 2);
  746. 2197,2198c2230,2231
  747. <   register yy_state_type yy_current_state;
  748. <   register char *yy_cp;
  749. ---
  750. >   yy_state_type yy_current_state;
  751. >   char *yy_cp;
  752. 2205c2238
  753. <       register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  754. ---
  755. >       YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  756. 2215c2248
  757. <               yy_c = yy_meta[(unsigned int) yy_c];
  758. ---
  759. >               yy_c = yy_meta[yy_c];
  760. 2217c2250
  761. <       yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c];
  762. ---
  763. >       yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  764. 2230,2231c2263,2264
  765. <   register int yy_is_jam;
  766. <       register char *yy_cp = (yy_c_buf_p);
  767. ---
  768. >   int yy_is_jam;
  769. >       char *yy_cp = (yy_c_buf_p);
  770. 2233c2266
  771. <   register YY_CHAR yy_c = 1;
  772. ---
  773. >   YY_CHAR yy_c = 1;
  774. 2243c2276
  775. <           yy_c = yy_meta[(unsigned int) yy_c];
  776. ---
  777. >           yy_c = yy_meta[yy_c];
  778. 2245c2278
  779. <   yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c];
  780. ---
  781. >   yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  782. 2250a2284,2287
  783. > #ifndef YY_NO_UNPUT
  784. >
  785. > #endif
  786. >
  787. 2275c2312
  788. <           yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
  789. ---
  790. >           yy_size_t offset = (int) ((yy_c_buf_p) - (yytext_ptr));
  791. 2292c2329
  792. <                   yyrestart(yyin );
  793. ---
  794. >                   yyrestart( yyin );
  795. 2298,2299c2335,2336
  796. <                   if ( yywrap( ) )
  797. <                       return EOF;
  798. ---
  799. >                   if ( yywrap(  ) )
  800. >                       return 0;
  801. 2338c2375
  802. <             yy_create_buffer(yyin,YY_BUF_SIZE );
  803. ---
  804. >             yy_create_buffer( yyin, YY_BUF_SIZE );
  805. 2341,2342c2378,2379
  806. <   yy_init_buffer(YY_CURRENT_BUFFER,input_file );
  807. <   yy_load_buffer_state( );
  808. ---
  809. >   yy_init_buffer( YY_CURRENT_BUFFER, input_file );
  810. >   yy_load_buffer_state(  );
  811. 2370c2407
  812. <   yy_load_buffer_state( );
  813. ---
  814. >   yy_load_buffer_state(  );
  815. 2394c2431
  816. <     YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
  817. ---
  818. >     YY_BUFFER_STATE yy_create_buffer  (FILE * file, yy_size_t  size )
  819. 2398c2435
  820. <   b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
  821. ---
  822. >   b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state )  );
  823. 2407c2444
  824. <   b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );
  825. ---
  826. >   b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2)  );
  827. 2413c2450
  828. <   yy_init_buffer(b,file );
  829. ---
  830. >   yy_init_buffer( b, file );
  831. 2432c2469
  832. <       yyfree((void *) b->yy_ch_buf  );
  833. ---
  834. >       yyfree( (void *) b->yy_ch_buf  );
  835. 2434c2471
  836. <   yyfree((void *) b  );
  837. ---
  838. >   yyfree( (void *) b  );
  839. 2446c2483
  840. <   yy_flush_buffer(b );
  841. ---
  842. >   yy_flush_buffer( b );
  843. 2489c2526
  844. <       yy_load_buffer_state( );
  845. ---
  846. >       yy_load_buffer_state(  );
  847. 2520c2557
  848. <   yy_load_buffer_state( );
  849. ---
  850. >   yy_load_buffer_state(  );
  851. 2539c2576
  852. <       yy_load_buffer_state( );
  853. ---
  854. >       yy_load_buffer_state(  );
  855. 2557c2594
  856. <       num_to_alloc = 1;
  857. ---
  858. >       num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
  859. 2563c2600
  860. <                                
  861. ---
  862. >
  863. 2565c2602
  864. <              
  865. ---
  866. >
  867. 2574c2611
  868. <       int grow_size = 8 /* arbitrary grow size */;
  869. ---
  870. >       yy_size_t grow_size = 8 /* arbitrary grow size */;
  871. 2594c2631
  872. <  * @return the newly allocated buffer state object.
  873. ---
  874. >  * @return the newly allocated buffer state object.
  875. 2604c2641
  876. <       return 0;
  877. ---
  878. >       return NULL;
  879. 2606c2643
  880. <   b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
  881. ---
  882. >   b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state )  );
  883. 2610c2647
  884. <   b->yy_buf_size = size - 2;  /* "- 2" to take care of EOB's */
  885. ---
  886. >   b->yy_buf_size = (size - 2);    /* "- 2" to take care of EOB's */
  887. 2613c2650
  888. <   b->yy_input_file = 0;
  889. ---
  890. >   b->yy_input_file = NULL;
  891. 2620c2657
  892. <   yy_switch_to_buffer(b  );
  893. ---
  894. >   yy_switch_to_buffer( b  );
  895. 2633c2670
  896. < YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
  897. ---
  898. > YY_BUFFER_STATE yy_scan_string (const char * yystr )
  899. 2636c2673
  900. <   return yy_scan_bytes(yystr,(int) strlen(yystr) );
  901. ---
  902. >   return yy_scan_bytes( yystr, strlen(yystr) );
  903. 2646c2683
  904. < YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, yy_size_t  _yybytes_len )
  905. ---
  906. > YY_BUFFER_STATE yy_scan_bytes  (const char * yybytes, yy_size_t  _yybytes_len )
  907. 2651c2688
  908. <   int i;
  909. ---
  910. >   yy_size_t i;
  911. 2654,2655c2691,2692
  912. <   n = (yy_size_t) _yybytes_len + 2;
  913. <   buf = (char *) yyalloc(n  );
  914. ---
  915. >   n = (yy_size_t) (_yybytes_len + 2);
  916. >   buf = (char *) yyalloc( n  );
  917. 2664c2701
  918. <   b = yy_scan_buffer(buf,n );
  919. ---
  920. >   b = yy_scan_buffer( buf, n );
  921. 2680c2717
  922. < static void yy_fatal_error (yyconst char* msg )
  923. ---
  924. > static void yynoreturn yy_fatal_error (const char* msg )
  925. 2682c2719
  926. <       (void) fprintf( stderr, "%s\n", msg );
  927. ---
  928. >           fprintf( stderr, "%s\n", msg );
  929. 2710c2747
  930. <        
  931. ---
  932. >    
  933. 2748c2785
  934. <  * @param line_number
  935. ---
  936. >  * @param _line_number line number
  937. 2751c2788
  938. < void yyset_lineno (int  line_number )
  939. ---
  940. > void yyset_lineno (int  _line_number )
  941. 2754c2791
  942. <     yylineno = line_number;
  943. ---
  944. >     yylineno = _line_number;
  945. 2759c2796
  946. <  * @param in_str A readable stream.
  947. ---
  948. >  * @param _in_str A readable stream.
  949. 2763c2800
  950. < void yyset_in (FILE *  in_str )
  951. ---
  952. > void yyset_in (FILE *  _in_str )
  953. 2765c2802
  954. <         yyin = in_str ;
  955. ---
  956. >         yyin = _in_str ;
  957. 2768c2805
  958. < void yyset_out (FILE *  out_str )
  959. ---
  960. > void yyset_out (FILE *  _out_str )
  961. 2770c2807
  962. <         yyout = out_str ;
  963. ---
  964. >         yyout = _out_str ;
  965. 2778c2815
  966. < void yyset_debug (int  bdebug )
  967. ---
  968. > void yyset_debug (int  _bdebug )
  969. 2780c2817
  970. <         yy_flex_debug = bdebug ;
  971. ---
  972. >         yy_flex_debug = _bdebug ;
  973. 2789c2826
  974. <     (yy_buffer_stack) = 0;
  975. ---
  976. >     (yy_buffer_stack) = NULL;
  977. 2792c2829
  978. <     (yy_c_buf_p) = (char *) 0;
  979. ---
  980. >     (yy_c_buf_p) = NULL;
  981. 2801,2802c2838,2839
  982. <     yyin = (FILE *) 0;
  983. <     yyout = (FILE *) 0;
  984. ---
  985. >     yyin = NULL;
  986. >     yyout = NULL;
  987. 2817c2854
  988. <       yy_delete_buffer(YY_CURRENT_BUFFER  );
  989. ---
  990. >       yy_delete_buffer( YY_CURRENT_BUFFER  );
  991. 2838c2875
  992. < static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
  993. ---
  994. > static void yy_flex_strncpy (char* s1, const char * s2, int n )
  995. 2840c2877,2878
  996. <   register int i;
  997. ---
  998. >      
  999. >   int i;
  1000. 2847c2885
  1001. < static int yy_flex_strlen (yyconst char * s )
  1002. ---
  1003. > static int yy_flex_strlen (const char * s )
  1004. 2849c2887
  1005. <   register int n;
  1006. ---
  1007. >   int n;
  1008. 2859c2897
  1009. <   return (void *) malloc( size );
  1010. ---
  1011. >           return malloc(size);
  1012. 2863a2902
  1013. >      
  1014. 2871c2910
  1015. <   return (void *) realloc( (char *) ptr, size );
  1016. ---
  1017. >   return realloc(ptr, size);
  1018. 2876c2915
  1019. <   free( (char *) ptr );   /* see yyrealloc() for (char *) cast */
  1020. ---
  1021. >           free( (char *) ptr );   /* see yyrealloc() for (char *) cast */
  1022. 2881,2882c2920
  1023. < #line 199 "/space/rguenther/gcc-7.4.0/gcc-7.4.0/gcc/gengtype-lex.l"
  1024. <
  1025. ---
  1026. > #line 200 "/usr/src/tools/gcc/../../external/gpl3/gcc/dist/gcc/gengtype-lex.l"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement