]> git.ipfire.org Git - thirdparty/gcc.git/blame - libcpp/ChangeLog
cgraph.c (cgraph_create_edge, [...]): Set proper cfun.
[thirdparty/gcc.git] / libcpp / ChangeLog
CommitLineData
61cc8223
JM
12009-04-18 Joseph Myers <joseph@codesourcery.com>
2
3 * directives.c (parse_include): Pass true to check_eol.
4
c7f9c0b9
JM
52009-04-18 Joseph Myers <joseph@codesourcery.com>
6
7 PR preprocessor/39646
8 * include/line-map.h (enum lc_reason): Add LC_RENAME_VERBATIM.
9 * line-map.c (linemap_add): Handle LC_RENAME_VERBATIM.
10 * directives.c (do_line, do_linemarker): Use LC_RENAME_VERBATIM in
11 place of LC_RENAME.
12
a5cb563b
JM
132009-04-18 Joseph Myers <joseph@codesourcery.com>
14
15 PR preprocessor/39647
16 * directives.c (check_eol): Add parameter expand.
17 (do_undef, parse_include, do_line, do_linemarker, do_ident,
18 do_pragma_once, do_pragma_system_header, do_ifdef, do_ifndef,
19 do_else, do_endif, do_assert, do_unassert): All callers changed.
20 Pass true from do_line, false elsewhere.
21
18f41a1b
JM
222009-04-12 Joseph Myers <joseph@codesourcery.com>
23
24 PR preprocessor/31869
25 * macro.c (stringify_arg): Handle NULL source token in padding
26 token where previous padding token did not have source token with
27 preceding whitespace.
28
748086b7
JJ
292009-04-09 Jakub Jelinek <jakub@redhat.com>
30
31 * Makefile.in: Change copyright header to refer to version
32 3 of the GNU General Public License and to point readers at the
33 COPYING3 file and the FSF's license web page.
34 * charset.c: Likewise.
35 * directives-only.c: Likewise.
36 * directives.c: Likewise.
37 * errors.c: Likewise.
38 * expr.c: Likewise.
39 * files.c: Likewise.
40 * identifiers.c: Likewise.
41 * include/cpp-id-data.h: Likewise.
42 * include/cpplib.h: Likewise.
43 * include/line-map.h: Likewise.
44 * include/mkdeps.h: Likewise.
45 * include/symtab.h: Likewise.
46 * init.c: Likewise.
47 * internal.h: Likewise.
48 * lex.c: Likewise.
49 * line-map.c: Likewise.
50 * macro.c: Likewise.
51 * makeucnid.c: Likewise.
52 * mkdeps.c: Likewise.
53 * pch.c: Likewise.
54 * symtab.c: Likewise.
55 * system.h: Likewise.
56 * traditional.c: Likewise.
57 * ucnid.tab: Likewise.
58 * ucnid.h: Regenerate.
59
eec49116
JJ
602009-04-01 Janis Johnson <janis187@us.ibm.com>
61
839a3b8a
JJ
62 PR c/39027
63 * include/cpplib.h (CPP_N_DEFAULT): Define.
64 * expr.c (interpret_float_suffix): Recognize d or D for double,
65 return new value for default.
66 (cpp_classify_number): Issue pedwarn for use of d or D in suffix.
67
eec49116
JJ
68 PR c/33466
69 * expr.c (interpret_float_suffix): Reject invalid suffix that uses
70 letters from decimal float and fixed-point suffixes.
71
47580d22
JM
722009-03-31 Joseph Myers <joseph@codesourcery.com>
73
74 PR preprocessor/15638
75 * files.c (_cpp_find_file): Call open_file_failed after diagnosing
76 invalid PCH.
77 (open_file_failed): Make error for missing file fatal.
78 * include/cpplib.h (CPP_DL_FATAL): Define.
79
5a2df0fa
SV
802009-03-30 Sergiy Vyshnevetskiy <serg@vostok.net>
81
82 PR preprocessor/31932:
83 * internal.h: Don't mention HAVE_ICONV_H.
84 * configure, config.in: Rebuild.
85 * configure.ac: Don't check for iconv.h.
86
c1a8a3c6
TT
872009-03-30 Tom Tromey <tromey@redhat.com>
88
89 PR preprocessor/39512:
90 * line-map.c (linemap_init): Initialize 'reallocator' field.
91
a37a7b8a
JJ
922009-03-30 Jakub Jelinek <jakub@redhat.com>
93
94 PR target/39558
95 * macro.c (cpp_get_token): If macro_to_expand returns NULL
96 and used some tokens, add CPP_PADDING before next token.
97
148e4216
JM
982009-03-29 Joseph Myers <joseph@codesourcery.com>
99
100 PR preprocessor/34695
101 * makedepend.c: Remove.
102 * Makefile.in (makedepend_OBJS, makedepend$(EXEEXT)): Remove.
103 (all, clean, TAGS_SOURCES, include): Remove makedepend handling.
104 * directives.c (cpp_errors): Remove.
105 * errors.c (print_location, _cpp_begin_message, v_message):
106 Remove.
107 (cpp_error, cpp_error_with_line): Always use error callback.
108 (cpp_error, cpp_error_with_line, cpp_errno): Return bool.
109 * include/cpplib.h (cpp_options): Remove pedantic_errors,
110 inhibit_warnings, warn_system_headers, inhibit_errors,
111 warnings_are_errors, client_diagnostic.
112 (cpp_callbacks): Add extra arguments to error callback; make it
113 return bool.
114 (cpp_finish): Return void.
115 (cpp_destroy): Remove inaccurate comment about return value.
116 (cpp_errors, CPP_DL_EXTRACT, CPP_DL_WARNING_P): Remove.
117 (CPP_DL_NOTE): Define.
118 * include/line-map.h (linemap_print_containing_files): Remove.
119 * init.c (cpp_finish): Do not check for or return number of
120 errors.
121 * internal.h (cpp_reader): Remove errors field.
122 * line-map.c (linemap_print_containing_files): Remove.
123 * macro.c (_cpp_create_definition): Use CPP_DL_NOTE for message
124 about previous definition. Only emit it if previous diagnostic
125 was emitted.
126
f1450211
JM
1272009-03-28 Joseph Myers <joseph@codesourcery.com>
128
129 * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not
130 mkinstalldirs.
131
8f5929e1
JJ
1322009-03-18 Jakub Jelinek <jakub@redhat.com>
133
134 * include/cpplib.h (struct cpp_dir): Reorder fields for 64-bit hosts.
135
4bb09c26
JM
1362009-02-21 Joseph Myers <joseph@codesourcery.com>
137
138 * lex.c (lex_string): Return a CPP_LESS token for missing '>' in a
139 header name.
140 (_cpp_lex_direct): Handle this.
141
68c9ab45
RG
1422009-02-15 Richard Guenther <rguenther@suse.de>
143
144 Revert last change.
145
601b3e1a
RG
1462009-02-13 Richard Guenther <rguenther@suse.de>
147
148 * configure.ac: Enable LFS.
149 * configure: Re-generate.
150 * config.in: Likewise.
151
fc0cd180
BE
1522009-01-05 Ben Elliston <bje@au.ibm.com>
153
154 * Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
155 (.po.pox): Likewise.
156 (po/$(PACKAGE).pot): Likewise.
157
db89a3be
AO
1582008-12-10 Alexandre Oliva <aoliva@redhat.com>
159
160 PR target/37033
161 * pch.c (cpp_valid_state): Improve message for poisoned symbols.
162 Allow for differences in __GCC_HAVE_DWARF2_CFI_ASM.
163
cc955282
JM
1642008-11-29 Joseph Myers <joseph@codesourcery.com>
165
166 * lex.c (cpp_token_len): Use 6 as default length.
167
47960aaf
MLI
1682008-10-31 Manuel López-Ibáñez <manu@gcc.gnu.org>
169
170 * expr.c (struct op): Add location.
171 (_cpp_parse_expr): Propagate locations throught the stack
172 of expressions.
173 (reduce): Likewise.
174 (check_promotion): Use explicit location in errors.
175
631d0d36
MG
1762008-10-05 Matthew Gingell <gingell@adacore.com>
177 Arnaud Charlet <charlet@adacore.com>
178
179 * include/cpplib.h (cpp_comments, cpp_comment_table): New structs.
180 (cpp_get_comments): New function.
181 * internal.h (struct cpp_reader): Add comments field.
182 * init.c (cpp_destroy): Free comments.
183 * lex.c (store_comment, cpp_get_comments): New functions.
184 (comments): New struct.
185 (save_comment): Store comments in comments struct.
186
c047ce93
SB
1872008-09-18 Simon Baldwin <simonb@google.com>
188
189 * include/cpplib.h (struct cpp_options): Add new boolean flag
190 warn_builtin_macro_redefined.
191 * init.c (cpp_create_reader): Initialize warn_builtin_macro_redefined.
192 * (struct builtin_operator): Split out from previous struct builtin,
193 enhance extra const correctness.
194 * (struct builtin_macro): Split out from previous struct builtin, add
195 new always_warn_if_redefined flag, enhance const correctness.
196 * (mark_named_operators): Use struct builtin_operator.
197 * (cpp_init_special_builtins): Use struct builtin_macro, add NODE_WARN
198 to builtins selectively.
199 * macro.c (warn_of_redefinition): Return false if a builtin macro
200 is not flagged with NODE_WARN.
201
affa55c6
JJ
2022008-07-31 Jakub Jelinek <jakub@redhat.com>
203
204 PR preprocessor/36649
205 * files.c (struct report_missing_guard_data): New type.
206 (report_missing_guard): Put paths into an array instead of printing
207 them right away. Return 1 rather than 0.
208 (report_missing_guard_cmp): New function.
209 (_cpp_report_missing_guards): Sort and print paths gathered by
210 report_missing_guard callback.
211
3b8f20a1
MLI
2122008-07-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
213
214 PR 28079
215 * directives.c (strtolinenum): Handle overflow.
216 (do_line): Give a warning if line number overflowed.
217 (do_linemarker): Update call to strtolinenum.
218
1bb64668
MLI
2192008-07-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
220
221 * include/line-map.h (linenum_type): New typedef.
222 (struct line_map): Use it.
223 (SOURCE_LINE): Second arguments is a LOCATION not a LINE.
224 (SOURCE_COLUMN): Likewise.
225 * macro.c (_cpp_builtin_macro_text): Use linenum_type. Don't store
226 source_location values in a variable of type linenum_type.
227 * directives.c (struct if_stack): Use linenum_type.
228 (strtoul_for_line): Rename as strtolinenum.
229 (do_line): Use linenum_type.
230 (do_linemarker): Use linenum_type and strtolinenum.
231 (_cpp_do_file_change): Use linenum_t.
232 * line-map.c (linemap_add): Likewise.
233 (linemap_line_start): Likewise.
234 * traditional.c (struct fun_macro): 'line' is a source_location.
235 * errors.c (print_location): Use linenum_type.
236 * directives-only.c (_cpp_preprocess_dir_only): Likewise.
237 * internal.h (CPP_INCREMENT_LINE): Likewise.
238 * lex.c (_cpp_skip_block_comment): Use source_location.
239
5950c3c9
BE
2402008-07-14 Ben Elliston <bje@au.ibm.com>
241
242 * include/cpplib.h (NODE_CONDITIONAL): New.
243 (struct cpp_callbacks): New macro_to_expand field.
244 (struct cpp_hashnode): Adjust size of flags and type fields.
245 (cpp_peek_token): Prototype.
246 * lex.c (cpp_peek_token): New function.
247 (_cpp_temp_token): Protect pre-existing lookaheads.
248 * macro.c (cpp_get_token): Expand any conditional macros.
249 (_cpp_backup_tokens_direct): New.
250 (_cpp_backup_tokens): Call _cpp_backup_tokens_direct.
251 (warn_of_redefinition): Silently allow redefined conditional
252 macros.
253 (_cpp_create_definition): Remove the conditional flag when a user
254 defines one of the conditional macros.
255 * internal.h (_cpp_backup_tokens_direct): New prototype.
256
e85edc9e
AH
2572008-06-13 Andrew Haley <aph@redhat.com>
258
259 PR preprocessor/33305
260 * macro.c (replace_args): Print a warning for empty macro
261 arguments in C89 and C++.
262
18c04407
RW
2632008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
264
265 * Makefile.in ($(srcdir)/aclocal.m4): Update dependencies.
266 * configure: Regenerate.
267
2d09b640
RW
2682008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
269
270 * Makefile.in (datarootdir): New variable.
271
0b7c73cc
L
2722008-06-12 H.J. Lu <hongjiu.lu@intel.com>
273
274 PR preprocessor/36479
275 * charset.c (cpp_interpret_string_notranslate): Also set
276 narrow_cset_desc.width.
277
cd985f66
JM
2782008-06-07 Joseph Myers <joseph@codesourcery.com>
279
280 * configure.ac (parisc*64*-*-*): Remove.
281 * configure: Regenerate.
282
d750887f
TT
2832008-05-30 Tom Tromey <tromey@redhat.com>
284
285 PR preprocessor/36320:
286 * internal.h (_cpp_parse_expr): Update.
287 * expr.c (_cpp_parse_expr): Add 'is_if' argument. Update error
288 messages.
289 * directives.c (do_if): Update.
290 (do_elif): Require expression if processing group.
291
c100de59
DS
2922008-05-30 Danny Smith <dannysmith@users.sourceforge.net>
293
294 * include/cpplib.h (struct cpp_dir): Add new field, canonical_name.
295
5d6342eb
TT
2962008-05-21 Tom Tromey <tromey@redhat.com>
297
298 PR preprocessor/27777:
299 * lex.c (cpp_output_line_to_string): New function.
300 * internal.h (_cpp_begin_message): Don't declare.
301 * errors.c (_cpp_begin_message): Now static.
302 * include/cpplib.h (cpp_output_line_to_string): Declare.
303 * directives.c (do_diagnostic): Rewrote. Use
304 cpp_output_line_to_string. Don't use _cpp_begin_message.
305
dae4174e
TT
3062008-05-21 Tom Tromey <tromey@redhat.com>
307
308 * include/symtab.h (HT_ALLOCED): Remove.
309 (ht_purge): Declare.
310 * symtab.c (DELETED): New define.
311 (ht_lookup): Update comment.
312 (ht_lookup_with_hash): Handle deleted entries. Remove HT_ALLOCED
313 code. Use subobject allocator for strings, if it exists.
314 (ht_expand): Handle deleted entries.
315 (ht_forall): Likewise.
316 (ht_purge): New function.
317 (ht_dump_statistics): Print deletion statistics.
318
899015a0
TT
3192008-05-13 Tom Tromey <tromey@redhat.com>
320
321 PR preprocessor/22168:
322 * include/cpplib.h (struct cpp_options) <objc>: Update
323 documentation.
324 * expr.c (eval_token): Warn for use of assertions.
325 * directives.c (directive_diagnostics): Warn about extensions.
326 (DEPRECATED): New define.
327 (DIRECTIVE_TABLE): Use it.
328
71c10038
TT
3292008-05-06 Tom Tromey <tromey@redhat.com>
330
331 PR preprocessor/35313, PR preprocessor/36088:
332 * expr.c (optab) <QUERY, COMMA>: Set precedence to 4.
333 (reduce) <case CPP_QUERY>: Special case CPP_COMMA and CPP_COLON.
334
2bd0fe3d
DM
3352008-05-04 David S. Miller <davem@davemloft.net>
336
337 * configure.ac (sparc*-*-*): Always set need_64bit_hwint to yes.
338 * configure: Regenerate.
339
28f68625
DF
3402008-04-22 Daniel Franke <franke.daniel@gmail.com>
341
342 * include/cpplib.h (cpp_define_formatted): New.
343 * directives.c (cpp_define_formatted): New.
344
688e7a53
TT
3452008-04-21 Tom Tromey <tromey@redhat.com>
346
347 PR libcpp/33415:
348 * charset.c (_cpp_convert_input): Add buffer_start argument.
349 Ignore UTF-8 BOM if seen.
350 * internal.h (_cpp_convert_input): Add argument.
351 * files.c (struct _cpp_file) <buffer_start>: New field.
352 (destroy_cpp_file): Free buffer_start, not buffer.
353 (_cpp_pop_file_buffer): Likewise.
354 (read_file_guts): Update.
355
b6baa67d
KVH
3562008-04-18 Kris Van Hees <kris.van.hees@oracle.com>
357
358 * include/cpp-id-data.h (UC): Was U, conflicts with U"..." literal.
359 * include/cpplib.h (CHAR16, CHAR32, STRING16, STRING32): New tokens.
360 (struct cpp_options): Added uliterals.
361 (cpp_interpret_string): Update prototype.
362 (cpp_interpret_string_notranslate): Idem.
363 * charset.c (init_iconv_desc): New width member in cset_converter.
364 (cpp_init_iconv): Add support for char{16,32}_cset_desc.
365 (convert_ucn): Idem.
366 (emit_numeric_escape): Idem.
367 (convert_hex): Idem.
368 (convert_oct): Idem.
369 (convert_escape): Idem.
370 (converter_for_type): New function.
371 (cpp_interpret_string): Use converter_for_type, support u and U prefix.
372 (cpp_interpret_string_notranslate): Match changed prototype.
373 (wide_str_to_charconst): Use converter_for_type.
374 (cpp_interpret_charconst): Add support for CPP_CHAR{16,32}.
375 * directives.c (linemarker_dir): Macro U changed to UC.
376 (parse_include): Idem.
377 (register_pragma_1): Idem.
378 (restore_registered_pragmas): Idem.
379 (get__Pragma_string): Support CPP_STRING{16,32}.
380 * expr.c (eval_token): Support CPP_CHAR{16,32}.
381 * init.c (struct lang_flags): Added uliterals.
382 (lang_defaults): Idem.
383 * internal.h (struct cset_converter) <width>: New field.
384 (struct cpp_reader) <char16_cset_desc>: Idem.
385 (struct cpp_reader) <char32_cset_desc>: Idem.
386 * lex.c (digraph_spellings): Macro U changed to UC.
387 (OP, TK): Idem.
388 (lex_string): Add support for u'...', U'...', u"..." and U"...".
389 (_cpp_lex_direct): Idem.
390 * macro.c (_cpp_builtin_macro_text): Macro U changed to UC.
391 (stringify_arg): Support CPP_CHAR{16,32} and CPP_STRING{16,32}.
392
deb984e6
PB
3932008-04-18 Paolo Bonzini <bonzini@gnu.org>
394
395 PR bootstrap/35457
396 * aclocal.m4: Regenerate.
397 * configure: Regenerate.
398
bf048bea
TT
3992008-04-17 Tom Tromey <tromey@redhat.com>
400
401 PR libcpp/34866:
402 * errors.c (cpp_error): Don't reference a token before the start
403 of the current run.
404
7f27b0f8
TT
4052008-04-16 Tom Tromey <tromey@redhat.com>
406
407 * Makefile.in (TAGS_SOURCES): New variable.
408 (TAGS): New target.
409
a1fcb9a1
KK
4102008-04-11 Kaz Kojima <kkojima@gcc.gnu.org>
411
412 * configure.ac: (need_64bit_hwint): Need 64bit hwint for sh-*-*
413 and shbe-*-*.
414 * configure: Rebuilt.
415
93d45d9e
JM
4162008-04-02 Joseph Myers <joseph@codesourcery.com>
417
418 * include/cpplib.h (struct cpp_callbacks): Add used_define,
419 used_undef and before_define.
420 (NODE_USED): Define.
421 * directives.c (do_define, do_undef, undefine_macros, do_ifdef,
422 do_ifndef, cpp_pop_definition): Handle new flag and use new
423 callbacks.
424 * expr.c (parse_defined): Handle new flag and use new callbacks.
425 * macro.c (enter_macro_context, _cpp_free_definition): Handle new
426 flag and use new callbacks.
427
d4c32e1d
JJ
4282008-04-01 Jakub Jelinek <jakub@redhat.com>
429
430 PR pch/13675
431 * files.c (struct _cpp_file): Remove pch field.
432 (pch_open_file): Don't set file->pch, just file->pchname.
433 (should_stack_file): After pfile->cb.read_pch call
434 free pchname and clear pchname, don't close file->fd.
435 Test file->pchname instead of file->pch. Don't close fd after cb.
436 (_cpp_stack_include): Test file->pchname instead of file->pch.
437
161031e3
TT
4382008-03-28 Tom Tromey <tromey@redhat.com>
439
440 * Makefile.in (POSTCOMPILE): New variable.
441 (.c.o): Use it.
442
14ccf800
TT
4432008-03-13 Tom Tromey <tromey@redhat.com>
444
445 PR libcpp/35322:
446 * directives.c (destringize_and_run): Set pfile->directive.
447
830465c6
MM
4482008-03-06 Markus Milleder <markus.milleder@generali.at>
449
450 PR preprocessor/35458
451 * mkdeps.c (munge): Quote '#' with a '\'.
452
d482a073
RW
4532008-02-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
454
455 PR preprocessor/35379
456 * mkdeps.c (deps_write): Ensure the first target always appears
457 in the first column, without leading backslash newline. Avoid
458 some more extra whitespace.
459
185a6cc1
TS
4602008-02-25 Thiemo Seufer <ths@mips.com>
461
d482a073 462 * Makefile.in ($(srcdir)/config.in): Depend on configure.ac.
185a6cc1 463
2bf41bf0
TT
4642008-02-19 Tom Tromey <tromey@redhat.com>
465
466 * traditional.c (lex_identifier): Use CPP_HASHNODE.
467 * lex.c (lex_identifier): Use CPP_HASHNODE.
468 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Wrap in
469 do-while.
470 * identifiers.c (alloc_node): Change return type.
471 (_cpp_init_hashtable): Don't cast 'alloc_node'.
472 (proxy_assertion_broken): New declaration.
473 (cpp_forall_identifiers): Move comment.
474 * line-map.c (linemap_add): Comment fix.
475 (linemap_line_start): Indentation fix.
476
765d600a
JJ
4772008-01-25 Jakub Jelinek <jakub@redhat.com>
478
479 PR preprocessor/34692
480 * macro.c (collect_args): Add pragma_buff argument. Push
481 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens to *pragma_buff, rather
482 than into arguments. Reset prevent_expansion and parsing_args
483 state at CPP_PRAGMA_EOL/CPP_EOF.
484 (funlike_invocation_p): Add pragma_buff argument, pass it through
485 to collect_args.
486 (enter_macro_context): Add result argument. Adjust
487 funlike_invocation_p caller. Emit all deferred pragma tokens
488 gathered during collect_args before the expansion, add a padding
489 token. Return 2 instead of 1 if any pragma tokens were prepended.
490 (cpp_get_token): If enter_macro_context returns 2, don't return
491 a padding token, instead cycle to grab CPP_PRAGMA token.
492 * directives.c (_cpp_handle_directive): If was_parsing_args
493 in deferred pragma, leave parsing_args and prevent_expansion as is.
494
ec46053b
TT
4952008-01-22 Tom Tromey <tromey@redhat.com>
496
765d600a 497 PR c++/34859
ec46053b
TT
498 * macro.c (_cpp_create_definition): Handle __STDC_LIMIT_MACROS and
499 __STDC_CONSTANT_MACROS.
500
681c6ab0
FF
5012008-01-07 Fred Fish <fnf@specifix.com>
502
765d600a 503 PR preprocessor/30363
681c6ab0
FF
504 * traditional.c (replace_args_and_push): Add local variable
505 cxtquote, calculate the replacement text size assuming a
506 worst case of every input character quoted with backslash,
507 and properly handle output quoting of quote characters in
508 actual arguments used in function-like macros.
509
33ae4837
TT
5102008-01-03 Tom Tromey <tromey@redhat.com>
511
765d600a 512 PR preprocessor/34602
33ae4837
TT
513 * directives.c (do_line): Don't try to spell EOF token.
514 (do_linemarker): Add comment.
515
675575f5
DD
5162007-12-11 DJ Delorie <dj@redhat.com>
517
518 * charset.c (convert_using_iconv): Close out any shift states,
519 returning to the initial state.
520
97f6bd40
TT
5212007-12-06 Tom Tromey <tromey@redhat.com>
522
765d600a 523 PR c/29172
97f6bd40
TT
524 * internal.h (struct cpp_reader) <file_hash_entries>: Changed
525 type.
526 <file_hash_entries_allocated, file_hash_entries_used>: Removed.
527 * files.c (FILE_HASH_POOL_SIZE): New macro.
528 (struct file_hash_entry_pool): New.
529 (destroy_all_cpp_files): New function.
530 (allocate_file_hash_entries): Allocate a file_hash_entry_pool.
531 (new_file_hash_entry): Update.
532 (free_file_hash_entries): New function.
533 (_cpp_cleanup_files): Call free_file_hash_entries and
534 destroy_all_cpp_files.
535 (cpp_clear_file_cache): New function.
536 * include/cpplib.h (cpp_clear_file_cache): Declare.
537
d56a25e1
TT
5382007-12-03 Tom Tromey <tromey@redhat.com>
539
765d600a 540 PR preprocessor/34288
d56a25e1
TT
541 * configure.ac, config.in: Rebuilt.
542 * configure.ac: Check for ssize_t.
543
607f74e9
TT
5442007-11-30 Tom Tromey <tromey@redhat.com>
545
765d600a 546 PR preprocessor/32868
607f74e9
TT
547 * macro.c (_cpp_create_definition): Special case
548 __STDC_FORMAT_MACROS.
549
b0f4807f
MM
5502007-11-16 Michael Matz <matz@suse.de>
551
552 * files.c (search_path_head): Fix check for absolute paths.
553
f1e20710
TT
5542007-11-11 Tom Tromey <tromey@redhat.com>
555
765d600a 556 PR c++/17557
f1e20710
TT
557 * include/cpplib.h (cpp_included_before): Declare.
558 * files.c (struct file_hash_entry) <location>: New field.
559 (_cpp_find_file): Initialize new field.
560 (make_cpp_dir): Likewise.
561 (cpp_included_before): New function.
562
f373b44d
TT
5632007-11-01 Tom Tromey <tromey@redhat.com>
564
765d600a 565 PR preprocessor/30805
f373b44d
TT
566 * macro.c (paste_tokens): Handle padding token.
567 (paste_tokens): Don't abort unless padding has PASTE_LEFT flag.
568
5b9a40df
TT
5692007-10-31 Tom Tromey <tromey@redhat.com>
570
765d600a 571 PR preprocessor/30786
5b9a40df
TT
572 * macro.c (builtin_macro): Return result of _cpp_do__Pragma.
573 * directives.c (_cpp_do__Pragma): Return error status.
574 * internal.h (_cpp_do__Pragma): Update.
575 * directives.c (get__Pragma_string): Back up if EOF seen.
576
5ffeb913
TT
5772007-09-06 Tom Tromey <tromey@redhat.com>
578
579 * internal.h (struct cpp_reader) <invocation_location>: New
580 field.
581 (struct cpp_reader) <set_invocation_location>: Likewise.
582 * init.c (cpp_set_line_map): New function.
583 * line-map.c (linemap_add): Use linemap's allocator.
584 * include/line-map.h (GTY): Define.
585 (line_map_realloc): New typedef.
586 (struct line_map): Mark with GTY.
587 (struct line_maps): Likewise.
588 (struct line_maps) <maps>: Likewise.
589 (struct line_maps) <reallocator>: New field.
590 * include/symtab.h (GTY): Conditionally define.
591 * include/cpplib.h (cpp_set_line_map): Declare.
592 (cpp_get_token_with_location): Declare.
593 * macro.c (cpp_get_token): Set invocation_location on the reader.
594 (cpp_get_token_with_location): New function.
595
ac6b1c67
CF
5962007-08-30 Chao-ying Fu <fu@mips.com>
597
598 * expr.c (interpret_float_suffix): Support hr, r, lr, llr, uhr, ur,
599 ulr, ullr, hk, k, lk, llk, uhk, uk, ulk, ullk.
600 (cpp_classify_number): Support decimal fixed-point constants without
601 exponents.
602 Warn about fixed-point constants when -pedantic.
603 * include/cpplib.h (CPP_N_SMALL, CPP_N_MEDIUM, CPP_N_LARGE): Change
604 comments to support fixed-point values.
605 (CPP_N_FRACT, CPP_N_ACCUM): Define.
606
cda5e672
TT
6072007-08-18 Tom Tromey <tromey@redhat.com>
608
765d600a 609 PR preprocessor/32974
cda5e672
TT
610 * directives.c (parse_include): Don't check for EOL when
611 processing #pragma dependency.
612
ccfc4c91
OW
6132007-07-30 Ollie Wild <aaw@google.com>
614
615 * directives-only.c: New file.
616 * internal.h (struct _cpp_dir_only_callbacks): New.
617 (_cpp_preprocess_dir_only): New function.
618 * directives.c (_cpp_handle_directive): Check directives_only before
619 disabling execution of indented directives.
620 * files.c (_cpp_stack_file): Add directives_only check.
621 * include/cpplib.h (struct cpp_options): Add directives_only.
622 (cpp_init_special_builtins): New function.
623 * init.c (cpp_init_special_builtins): New function.
624 (cpp_init_builtins): Move builtin_array initialization to
625 cpp_init_special_builtins.
626 (post_options): Check directives_only before setting
627 pfile->state.prevent_expansion = 1.
628 * macro.c (_cpp_builtin_macro_text): Print an error if __COUNTER__
629 is expanded inside a directive while -fdirectives-only is enabled.
630 * Makefile.in (libcpp_a_OBJS): Add directives-only.o.
631 (libcpp_a_SOURCES): Add directives-only.c.
632
a206413a
UB
6332007-07-04 Uros Bizjak <ubizjak@gmail.com>
634
635 * traditional.c (_cpp_scan_out_logical_line): Initialize
636 fmacro.args, fmacro.node, fmacro.offset, fmacro.line and
637 fmacro.args to prevent 'may be used uninitialized' warning.
638
c77cd3d1
UB
6392007-07-03 Uros Bizjak <ubizjak@gmail.com>
640
641 * include/cpplib.h (CPP_N_WIDTH_MD, CPP_N_MD_W, CPP_N_MD_Q):
642 Add new constants.
643 * expr.c (interpret_float_suffix): Process 'w', 'W', 'q' and 'Q'
644 suffixes. Return CPP_N_MD_W for 'w' or 'W' suffixes and CPP_N_MD_Q
645 for 'q' or 'Q' suffixes.
646
66938a1d
DS
6472007-06-17 Danny Smith <dannysmith@users.sourceforge.net
648
e1311401 649 * files.c (open_file): Correct typo.
66938a1d 650
71995ede
VP
6512007-06-16 Vladimir Prus <vladimir@codesourcery.com>
652
e1311401 653 * files.c (open_file): Prevent the call
71995ede
VP
654 for stat from overwriting errno.
655
84152c25
VP
6562007-06-09 Vladimir Prus <vladimir@codesourcery.com>
657
e1311401 658 * files.c (open_file): Account for the
84152c25
VP
659 fact that on windows, opening a directory gives
660 EACCES.
661
f7fd775f
JW
6622007-06-05 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
663
664 PR preprocessor/23479
665 * expr.c (cpp_classify_number): Implement 0b-prefixed binary
666 integer constants.
667 (append_digit): Likewise.
668 * include/cpplib.h: Add CPP_N_BINARY, to be used for 0b-prefixed
669 binary integer constants.
670
ed0e74e0
DK
6712007-05-31 Dave Korn <dave.korn@artimi.com>
672
673 PR preprocessor/14331
674 * lex.c (_cpp_get_fresh_line): Don't warn if no newline at EOF.
675
a702045a
OW
6762007-05-24 Ollie Wild <aaw@google.com>
677
678 * macro.c (_cpp_builtin_macro_text): Handle BT_COUNTER.
679 * pch.c (cpp_write_pch_deps): Save __COUNTER__ state.
680 (cpp_write_pch_state): Save __COUNTER__ state.
681 (cpp_valid_state): Check valid __COUNTER__ state.
682 (cpp_read_state): Read new __COUNTER__ state.
683 * include/cpplib.h (enum builtin_type): Add BT_COUNTER enumerator.
684 * init.c (builtin_array): Add __COUNTER__/BT_COUNTER.
685 * internal.h (struct cpp_reader): Add counter member.
686
126e073b
SM
6872007-05-23 Simon Martin <simartin@users.sourceforge.net>
688
689 PR preprocessor/20077
690 * macro.c (create_iso_definition): Fixed the method to determine
691 whether the token-pasting operator appears at the beginning or the end
692 of a macro.
693
0b4cafec
ILT
6942007-05-21 Ian Lance Taylor <iant@google.com>
695
696 * internal.h (struct cpp_reader): Add new fields:
697 nonexistent_file_hash and nonexistent_file_ob.
698 * files.c: Include "obstack.h".
699 (find_file_in_dir): Before trying to open the file, look up the
700 path name in the hash table of nonexistent files. After failing
701 to open the file, add the path name to the hash table.
702 (_cpp_find_file): Cache the results of looking up the file name
703 starting with the quote and bracket chain heads, if we can.
704 (nonexistent_file_hash_eq): New static function.
705 (_cpp_init_files): Initialize pfile->nonexistent_file_hash and
706 pfile->nonexistent_file_ob.
707 (_cpp_cleanup_files): Free pfile->nonexistent_file_hash and
708 pfile->nonexistent_file_ob.
709
30e04921
JJ
7102007-05-14 Janis Johnson <janis187@us.ibm.com>
711
5a6bb57e
JJ
712 * expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.
713
30e04921
JJ
714 PR c/31924
715 * expr.c (interpret_float_suffix): Check for invalid suffix.
716
22a8a52d
EC
7172007-05-02 Eric Christopher <echristo@apple.com>
718
719 * expr.c (num_div_op): Don't overflow if the result is
720 zero.
721
fca35e1b
TT
7222007-05-02 Tom Tromey <tromey@redhat.com>
723
765d600a 724 PR preprocessor/28709
fca35e1b
TT
725 * macro.c (paste_tokens): Remove PASTE_LEFT from the old lhs.
726
4cd97075
MM
7272007-03-30 Michael Meissner <michael.meissner@amd.com>
728
729 * directives.c (lex_macro_node_from_str): Fix alloca call to be
730 type correct.
731
121de39f
RH
7322007-03-30 Richard Henderson <rth@redhat.com>
733
734 * directives.c (lex_macro_node_from_str): New.
735 (cpp_push_definition, cpp_pop_definition): New.
736 * include/cpplib.h (cpp_push_definition, cpp_pop_definition): Declare.
737
4fcb360b
BM
7382007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
739
740 * Makefile.in: Add dummy install-pdf target.
741
67e64439
TT
7422007-01-30 Tom Tromey <tromey@redhat.com>
743
765d600a 744 PR preprocessor/30468
67e64439
TT
745 * mkdeps.c (apply_vpath): Strip successive '/'s if we stripped
746 './'.
747
ee380365
TT
7482007-01-30 Tom Tromey <tromey@redhat.com>
749
765d600a 750 PR preprocessor/29966
ee380365
TT
751 * macro.c (lex_expansion_token): Save and restore cpp_reader's
752 cur_token.
753 (_cpp_create_definition): Don't restore cur_token here.
754 * lex.c (_cpp_lex_token): Added assertion.
755
024abeb3
TT
7562007-01-27 Tom Tromey <tromey@redhat.com>
757
758 * configure: Rebuilt.
759
ee1c2a10
TT
7602007-01-12 Tom Tromey <tromey@redhat.com>
761
765d600a 762 PR preprocessor/28227
ee1c2a10
TT
763 * directives.c (lex_macro_node): Added 'is_def_or_undef'
764 argument.
765 (do_define): Update.
766 (do_undef): Update.
767 (do_ifdef): Update.
768 (do_ifndef): Update.
769
67214c16
PB
7702007-01-11 Paolo Bonzini <bonzini@gnu.org>
771
772 * configure: Regenerate.
773
1aa6ca40
PB
7742007-01-11 Paolo Bonzini <bonzini@gnu.org>
775
776 * configure: Regenerate.
777
705e2d28
TT
7782007-01-04 Tom Tromey <tromey@redhat.com>
779
765d600a 780 PR preprocessor/28165
705e2d28
TT
781 * internal.h (cpp_in_primary_file): New function.
782 * directives.c (do_include_next): Use cpp_in_primary_file.
783 (do_pragma_once): Likewise.
784 (do_pragma_system_header): Likewise.
785
7af45bd4
ILT
7862006-12-29 Ian Lance Taylor <iant@google.com>
787
788 * lex.c (_cpp_clean_line): Add uses of __builtin_expect. Don't
789 look backward at the end of the line unless we saw a backslash.
790
9d30f270
JJ
7912006-12-29 Jakub Jelinek <jakub@redhat.com>
792
793 PR preprocessor/29612
794 * directives.c (do_linemarker): Set pfile->buffer->sysp always, not
795 only when new_sysp is non-zero.
796
30b0edc0
TT
7972006-12-28 Tom Tromey <tromey@redhat.com>
798
765d600a 799 PR preprocessor/30001
30b0edc0
TT
800 * charset.c (_cpp_convert_input): Check that to.len is greater
801 than zero.
802
85d9c13c
TS
8032006-11-20 Trevor Smigiel <Trevor_Smigiel@playstation.sony.com>
804
805 * configure.ac (need_64bit_hwint): Need 64bit hwint for SPU.
83cc06b2 806 * configure: Rebuilt.
85d9c13c 807
dfafdaa6
DG
8082006-11-01 Douglas Gregor <doug.gregor@gmail.com>
809
810 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX0X and CLK_CXX0X
811 for experimental C++0x mode.
812 * init.c (lang_defaults): Add defaults for C++0x modes. C++0x has
813 adopted the preprocessor changes introduced in C99.
814
0f45f0f5
JM
8152006-10-29 Joseph Myers <joseph@codesourcery.com>
816
817 * configure.ac (need_64bit_hwint): Set for i[34567]86-*-linux*
818 depending on --enable-targets=all.
819 * configure: Regenerate.
820
de000d22
JJ
8212006-10-12 Jakub Jelinek <jakub@redhat.com>
822
823 PR preprocessor/28709
824 * macro.c (paste_tokens): Do error reporting here, use BUF with the
825 spelled LHS token as opposed to spelling it again.
826 (paste_all_tokens): Don't report errors here, just break on failure.
827
b5422ad7
BM
8282006-10-10 Brooks Moses <bmoses@stanford.edu>
829
830 * Makefile.in: Added empty "pdf" target.
831
aaf50ff2
GK
8322006-09-22 Geoffrey Keating <geoffk@apple.com>
833
834 * configure.ac: Make need_64_bit_hwint case for x86-darwin
835 match exactly the glob in gcc/config.gcc.
836 * configure: Regenerate.
837
c663e301
JM
8382006-09-13 Joseph S. Myers <joseph@codesourcery.com>
839
840 PR c/28768
841 PR preprocessor/14634
842 * lex.c (lex_string): Pedwarn for unterminated literals.
843
f7288899
EC
8442006-09-08 Eric Christopher <echristo@apple.com>
845
846 * configure.ac: Add 64-bit HWI support for i?86-darwin.
847
b52dbbf8
SE
8482006-08-14 Steve Ellcey <sje@cup.hp.com>
849
850 PR c++/28288
851 PR c++/14556
852 * include/cpplib.h: Remove <?, >?, <?=, and >?= tokens.
853 (CPP_LAST_EQ): Change.
854 (CPP_LAST_PUNCTUATOR): Change.
855 * expr.c (cpp_operator): Remove MIN and MAX.
856 (reduce): Remove CPP_MIN and CPP_MAX.
857 (num_binary_op): Ditto.
858 * lex.c (_cpp_lex_direct): Ditto.
859 (cpp_avoid_paste): Remove ? as legal symbol after > or <.
860
1c90c6f9
JJ
8612006-06-09 Jakub Jelinek <jakub@redhat.com>
862
863 PR preprocessor/27746
864 * directives.c (do_pragma): Handle pragma with valid namespace
865 and invalid name coming from macro expansion.
866 * directives.c (destringize_and_run): Initialize next field in
867 context.
868
869 PR c/27747
870 PR c++/27748
871 * directives.c (destringize_and_run): Set NO_EXPAND on the
872 tokens.
873
874 * macro.c (_cpp_backup_tokens): Fix comment typo.
875
5c3c3683
DJ
8762006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
877
878 * Makefile.in (CATALOGS): Add po/ prefix.
879 * configure: Regenerated.
880
b2bd74bc
CD
8812006-05-23 Carlos O'Donell <carlos@codesourcery.com>
882
883 * Makefile.in: Add install-html target. Add install-html to .PHONY
884
be8ac3e2
GZ
8852006-02-17 Grigory Zagorodnev <grigory_zagorodnev@linux.intel.com>
886
887 * macro.c (_cpp_builtin_macro_text): Handle BT_TIMESTAMP.
888 * files.c (_cpp_get_file_stat): New function.
889 * include/cpplib.h (builtin_type): Add BT_TIMESTAMP.
890 * init.c (builtin_array): Add support for __TIMESTAMP__/BT_TIMESTAMP.
891 * internal.h (_cpp_get_file_stat): Prototype.
892 (struct cpp_buffer): Add timestamp.
893
83900997
JJ
8942006-01-23 Jakub Jelinek <jakub@redhat.com>
895
896 PR preprocessor/25717
897 * init.c (cpp_init_builtins): If __STDC__ will not change value
898 between system headers and other sources, define it as a normal
899 macro rather than a builtin.
900 * macro.c (_cpp_builtin_macro_text) <case BT_STDC>: Only check
901 cpp_in_system_header condition.
902
9032006-01-05 Paolo Bonzini <bonzini@gnu.org>
9220c30c
PB
904
905 * Makefile.in: Use -MMD instead of -MD.
906
bc4071dd
RH
9072006-01-04 Dmitry Kurochkin <dmitry.kurochkin@gmail.com>
908 Richard Henderson <rth@redhat.com>
909
910 Merge from gomp branch:
911 * directives.c (struct pragma_entry): Add is_deferred. Add ident
912 entry to value union.
913 (end_directive): Don't eat the line if in_deferred_pragma.
914 (run_directive): Remove pragma hacks.
915 (insert_pragma_entry): Remove.
916 (new_pragma_entry): New.
917 (register_pragma_1): Split out of register_pragma. Only handle
918 the lookup tree and return the new entry.
919 (cpp_register_pragma): Fill in the pragma entry here.
920 (cpp_register_deferred_pragma): New.
921 (register_pragma_internal): New.
922 (_cpp_init_internal_pragmas): Use register_pragma_internal.
923 (do_pragma): Allow pragma expansion after namespace. For deferred
924 pragmas, don't slurp the line into a string.
925 (destringize_and_run): Save tokens for deferred pragmas.
926 (cpp_handle_deferred_pragma): Remove.
927 * macro.c (builtin_macro): Remove pragma token hack.
928 (_cpp_push_token_context): Rename from push_token_context and export.
929 * internal.h (struct lexer_state): Add pragma_allow_expansion.
930 (_cpp_push_token_context): Declare.
931 * lex.c (_cpp_lex_token): Allow _cpp_handle_directive to return
932 a token. Update the line number correctly if so.
933 (_cpp_lex_direct): Emit CPP_PRAGMA_EOL tokens.
934 (cpp_token_val_index): Return CPP_TOKEN_FLD_PRAGMA for pragmas.
935 * include/cpplib.h (PRAGMA_EOL): New.
936 (CPP_TOKEN_FLD_PRAGMA): New.
937 (struct cpp_token): Add val.pragma.
938 (struct cpp_options): Remove defer_pragmas.
939 (cpp_handle_deferred_pragma): Remove.
940 (cpp_register_deferred_pragma): Declare.
941
d09e893f
JJ
9422006-01-01 Jakub Jelinek <jakub@redhat.com>
943
944 PR c++/25294
945 * directives.c (do_pragma): If pragma line ends with multi-line
946 block comment, end the saved deferred pragma string before that
947 comment. Handle embedded '\0' chars on the pragma line.
948
ab84748a
VR
9492005-12-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
950
951 PR c++/23333
952 * include/cpplib.h: Add PURE_ZERO to flags for the cpp_token structure.
953
ad6ed77e
JG
9542005-12-07 Jon Grimm <jgrimm2@us.ibm.com>
955 Ben Elliston <bje@au.ibm.com>
956
957 * include/cpplib.h (CPP_N_DFLOAT): New.
958 * expr.c (interpret_float_suffix): Identify df, dd, and dl
959 suffixes as decimal floating point constants.
960 (cpp_classify_number): Disallow hexadecimal DFP constants.
961
ba096620 9622005-11-14 Gerald Pfeifer <gerald@pfeifer.com>
bc4071dd 963 Ian Lance Taylor <ian@airs.com>
ba096620
GP
964
965 * include/cpplib.h (struct cpp_callbacks): Annotate error with
966 ATTRIBUTE_FPTR_PRINTF(3,0) instead of ATTRIBUTE_PRINTF(3,0).
967
456b8ce5
UB
9682005-11-09 Per Bothner <per@bothner.com>
969 Uros Bizjak <uros@kss-loka.si>
f7288899 970
456b8ce5
UB
971 PR c/24101
972 * init.c (read_original_filename): Temporarily set
973 state.in_directive before calling _cpp_lex_direct for
974 CPP_HASH tokens.
975
5571f74f
JW
9762005-11-03 James E Wilson <wilson@specifix.com>
977
978 PR preprocessor/24202
979 * files.c (_cpp_pop_file_buffer): Set buffer_valid to false.
980
a63607ed
JM
9812005-11-04 Joseph S. Myers <joseph@codesourcery.com>
982
983 * include/cpplib.h (struct cpp_callbacks): Make error take
984 va_list* parameter.
985 * errors.c (cpp_error): Update call to callback.
986
651ed942
AP
9872005-11-03 Andrew Pinski <pinskia@physics.uc.edu>
988
989 PR preprocessor/22042
990 * macro.c (_cpp_builtin_macro_text): Lower the needed max
991 buffer size.
992 (cpp_quote_string): Don't octalify non printable
993 charactors.
994
178b58b5
JM
9952005-11-03 Joseph S. Myers <joseph@codesourcery.com>
996
997 PR c++/17964
998 * include/cpplib.h (struct cpp_options): Add client_diagnostic.
999 (struct cpp_callbacks): Add error.
1000 * errors.c (cpp_error): If client_diagnostic, use error callback.
1001 * charset.c (convert_escape): Don't use %03o in diagnostic.
1002
3ee5ed11 10032005-10-21 James E Wilson <wilson@specifix.com>
6568f34b
JW
1004
1005 PR preprocessor/15220
1006 * files.c (_cpp_find_file): New parameter angle_brackets. Fix all
1007 callers. Pass to open_file_failed.
1008 (open_file_failed): New parameter angle_brackets. Fix all callers.
1009 Use in print_dep assignment.
1010 * init.c (cpp_read_main_file): Pass additional arg to _cpp_find_file.
1011 * internal.h (_cpp_find_file): Add new parm to declaration.
f7288899 1012
077fc835
KH
10132005-10-08 Kazu Hirata <kazu@codesourcery.com>
1014
1015 * configure.ac: Require 64-bit int for arm*-*-*eabi*.
1016 * configure: Regenerate.
1017
cbc43ae0
ILT
10182005-10-04 Ian Lance Taylor <ian@airs.com>
1019
1020 PR preprocessor/13726
1021 * directives.c (check_eol_return_comments): New static function.
1022 (parse_include): Add buf parameter. Change all callers.
1023 (do_include_common): If not discard comments, turn on
1024 save_comments. Pass collected comments to include callback.
1025 * include/cpplib.h (struct cpp_callbacks): Add new parameter to
1026 include callback: cpp_token list.
1027
af15a2fe
JM
10282005-09-20 Joseph S. Myers <joseph@codesourcery.com>
1029
1030 * include/cpplib.h (struct cpp_options): Add extended_identifiers.
1031 * init.c (struct lang_flags, lang_defaults): Add
1032 extended_identifiers.
1033 (cpp_set_lang): Use it.
1034 * lex.c (forms_identifier_p): Check extended_identifiers.
1035
f5eab47e
JJ
10362005-08-30 Jakub Jelinek <jakub@redhat.com>
1037
1038 PR preprocessor/20348
1039 PR preprocessor/20356
1040 * files.c (_cpp_find_file, search_cache): Revert 2004-06-26 and
1041 2004-06-05 changes.
1042
467129e6
KG
10432005-07-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1044
1045 * configure.ac (ACX_PROG_CC_WARNING_OPTS): add
1046 -Wmissing-format-attribute.
1047
1048 * configure: Regenerate.
1049
200031d1
KC
10502005-06-29 Kelley Cook <kcook@gcc.gnu.org>
1051
1052 * all files: Update FSF address in copyright headers.
1053 * makeucnid.c (write_copyright): Update outputted FSF address.
1054
f610dd5f
ZW
10552005-06-13 Zack Weinberg <zack@codesourcery.com>
1056
1057 * configure.ac: Invoke ZW_CREATE_DEPDIR and
1058 ZW_PROG_COMPILER_DEPENDENCIES.
1059 * aclocal.m4, configure: Regenerate.
1060 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.base, COMPILE):
1061 New variables.
1062 (distclean): Clean up $(DEPDIR) and its contents.
1063 (.c.o): Use $(COMPILE).
1064 Include $(DEPDIR)/*.Po for most object->header dependencies.
1065
c3f829c1
GDR
10662005-05-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
1067
1068 * configure.ac: Check declarations for asprintf and vasprintf.
1069 * config.in: Regenerate.
1070 * configure: Likewise.
1071
1072 * charset.c (conversion_loop): Use XRESIZEVEC.
1073 (convert_no_conversion): Likewise.
1074 (convert_using_iconv): Likewise.
1075 (init_iconv_desc): Cast return value of alloca.
1076 (cpp_host_to_exec_charset): Use XNEWVEC.
1077 (emit_numeric_escape): Use XRESIZEVEC.
1078 (cpp_interpret_string): Use XNEWVEC.
1079 (cpp_interpret_string): Use XRESIZEVEC.
1080 (_cpp_interpret_identifier): Cast return value of alloca.
1081 (_cpp_convert_input): Use XNEWVEC and XRESIZEVEC.
1082 * directives.c (glue_header_name): Use XNEWVEC and XRESIZEVEC.
1083 (parse_include): Use XNEWVEC.
1084 (insert_pragma_entry): Rename local variable "new" to
f610dd5f 1085 "new_entry".
c3f829c1
GDR
1086 (save_registered_pragmas): Cast return value of xmemdup.
1087 (destringize_and_run): Same for alloca.
1088 (parse_assertion): Likewise.
1089 (do_assert): Cast allocated storage to proper type.
1090 (cpp_define): Likewise.
1091 (_cpp_define_builtin): Likewise.
1092 (cpp_undef): Likewise.
1093 (handle_assertion): Likewise.
1094 (cpp_push_buffer): Rename local variable "new" to "new_buffer".
1095 * expr.c (CPP_UPLUS): Cast value to type cpp_ttype.
1096 (CPP_UMINUS): Likewise.
1097 (struct cpp_operator): Rename from struct operator.
1098 (_cpp_expand_op_stack): Use XRESIZEVEC.
1099 * files.c (pch_open_file): Use XNEWVEC.
1100 (pch_open_file): Use XRESIZEVEC.
1101 (read_file_guts): Use XNEWVEC and XRESIZEVEC.
1102 (dir_name_of_file): Use XNEWVEC.
1103 (make_cpp_file): Use XCNEW.
1104 (make_cpp_dir): Likewise.
1105 (allocate_file_hash_entries): USE XNEWVEC.
1106 (cpp_included): Cast return value of htab_find_with_hash.
1107 (append_file_to_dir): Use XNEWVEC.
1108 (read_filename_string): Likewise. Use XRESIZEVEC too.
1109 (read_name_map): Cast return value of alloca. Use XRESIZEVEC.
1110 (remap_filename): Use XNEWVEC.
1111 (struct pchf_entry): Move definition out of struct pchf_data.
1112 (_cpp_save_file_entries): Use XCNEWVAR.
1113 (_cpp_read_file_entries): Use XNEWVAR.
1114 * identifiers.c (alloc_node): Use XOBNEW.
1115 * init.c (cpp_create_reader): Use XCNEW.
1116 (cpp_init_builtins): Cast of b->value to enum builtin_type.
1117 (read_original_directory): Cast return value of alloca.
1118 * lex.c (add_line_note): Use XRESIZEVEC.
1119 (warn_about_normalization): Use XNEWVEC.
1120 (_cpp_lex_direct): Cast node->directive_index to (enum cpp_ttype).
1121 (new_buff): Use XNEWVEC.
1122 * line-map.c (linemap_add): Use XRESIZEVEC.
1123 * macro.c (builtin_macro): Cast return value of alloca.
1124 (paste_tokens): Likewise.
1125 (expand_arg): Use XNEWVEC and XRESIZEVEC.
1126 (_cpp_save_parameter): Use XRESIZEVEC.
1127 (create_iso_definition): Cast allocated storage to proper type.
1128 (_cpp_create_definition): Likewise.
1129 (cpp_macro_definition): Use XRESIZEVEC.
1130 * makedepend.c (add_clm): Use XNEW.
1131 (add_dir): Likewise.
1132 * mkdeps.c (munge): Use XNEWVEC.
1133 (deps_init): Use XCNEW.
1134 (deps_add_target): Use XRESIZEVEC.
1135 (deps_add_default_target): Cast return value of alloca.
1136 (deps_add_dep): Use XRESIZEVEC.
1137 (deps_add_vpath): Likewise. Use XNEWVEC too.
1138 (deps_restore): Likewise.
1139 * pch.c (save_idents): Use XNEW and XNEWVEC.
1140 (cpp_save_state): Use XNEW.
1141 (count_defs): Cast return value of htab_find.
1142 (write_defs): Likewise.
1143 (cpp_write_pch_deps): Use XNEWVEC.
1144 (collect_ht_nodes): Use XRESIZEVEC.
1145 (cpp_valid_state): Use XNEWVEC.
1146 (save_macros): Use XRESIZEVEC. Cast return value of xmemdup.
1147 * symtab.c (ht_create): Use XCNEW.
1148 (ht_lookup_with_hash): Cast return value of obstack_copy0.
1149 (ht_expand): Use XCNEWVEC.
1150 * system.h (HAVE_DESIGNATED_INITIALIZERS): False if __cplusplus.
1151 (bool): Do not define if __cplusplus.
1152
1ed17cd5
ZW
11532005-05-12 Zack Weinberg <zack@codesourcery.com>
1154
1155 * directives.c (#sccs table entry): Mark IN_I, consistent with #ident.
1156 (do_sccs): Delete function definition, #define to do_ident.
1157 (do_ident): Don't hardwire directive name.
1158
5a8c20ce
RK
11592005-05-12 Ryota Kunisawa <kunisawa@access.co.jp>
1160
1161 PR bootstrap/21230
1162 * configure: Regenerate.
1163
473c5bc9
AP
11642005-04-27 Andris Pavenis <pavenis@latnet.lv>
1165
1166 * files.c: Include io.h for DJGPP to get prototype of setmode.
1167
c1fc5047
PB
11682005-04-19 Per Bothner <per@bothner.com>
1169
1170 PR preprocessor/20907
1171 * line-map.c (linemap_line_start): Fix bug when we need to increse
1172 column_bits but can re-use the current line_map.
1173
042630ad
KG
11742005-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1175
1176 * system.h (fopen, fdopen, freopen): Define these to the unlocked
1177 libiberty functions.
1178
0d667716
KG
11792005-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1180
1181 * configure.ac (libcpp_UNLOCKED_FUNCS): New.
1182 (AC_CHECK_FUNCS, AC_CHECK_DECLS): Check for libcpp_UNLOCKED_FUNCS.
1183 * system.h (putchar, getc, getchar, clearerr, feof, fileno,
1184 fflush, fgetc, fgets, ferror, fread): Redefine to the associated
1185 _unlocked function.
1186 (fwrite_unlocked): Fix prototype.
1ed17cd5 1187
0d667716
KG
1188 * configure, config.in: Regenerate.
1189
cae064e7
JJ
11902005-04-05 Jakub Jelinek <jakub@redhat.com>
1191
1192 PR preprocessor/19475
1193 * macro.c (create_iso_definition): For < ISO C99, don't
1194 pedwarn if there is no whitespace between macro name and its
1195 replacement, but the replacement starts with a basic character
1196 set character.
1197
cbada204
AJ
11982005-03-28 Andreas Jaeger <aj@suse.de>
1199
1200 * lex.c (warn_about_normalization): Cast field width to int to
1201 avoid warning.
1202
f42eccdb
JM
12032005-03-19 Joseph S. Myers <joseph@codesourcery.com>
1204
1205 * configure.ac: Consistently use solaris2.1[0-9]* instead of
1206 solaris2.1[0-9].
1207 * configure: Regenerate.
1208
c79e602b
GK
12092005-03-15 Geoffrey Keating <geoffk@apple.com>
1210
1211 * charset.c (_cpp_valid_ucn): In identifiers, reject a partial
1212 UCN rather than printing an error.
1213
50668cf6
GK
12142005-03-14 Geoffrey Keating <geoffk@apple.com>
1215
6baba9bb
GK
1216 * lex.c (forms_identifier_p): Disable UCNs in C89 mode.
1217
12182005-03-14 Geoffrey Keating <geoffk@apple.com>
1ed17cd5 1219
50668cf6
GK
1220 * init.c (cpp_create_reader): Default warn_normalize to normalized_C.
1221 * charset.c: Update for new format of ucnid.h.
1222 (ucn_valid_in_identifier): Update for new format of ucnid.h.
1223 Add NST parameter, and update it; update callers.
1224 (cpp_valid_ucn): Add NST parameter, update callers. Replace abort
1225 with cpp_error.
1226 (convert_ucn): Pass normalize_state to cpp_valid_ucn.
1227 * internal.h (struct normalize_state): New.
1228 (INITIAL_NORMALIZE_STATE): New.
1229 (NORMALIZE_STATE_RESULT): New.
1230 (NORMALIZE_STATE_UPDATE_IDNUM): New.
1231 (_cpp_valid_ucn): New.
1232 * lex.c (warn_about_normalization): New.
1233 (forms_identifier_p): Add normalize_state parameter, update callers.
1234 (lex_identifier): Add normalize_state parameter, update callers. Keep
1235 the state current.
1236 (lex_number): Likewise.
1237 (_cpp_lex_direct): Pass normalize_state to subroutines. Check
1238 it with warn_about_normalization.
1239 * makeucnid.c: New.
1240 * ucnid.h: Replace.
1241 * ucnid.pl: Remove.
1242 * ucnid.tab: Make appropriate for input to makeucnid.c. Remove
1243 comments about obsolete version of C++.
1244 * include/cpplib.h (enum cpp_normalize_level): New.
1245 (struct cpp_options): Add warn_normalize field.
1246
47e20491
GK
12472005-03-11 Geoffrey Keating <geoffk@apple.com>
1248
1249 * directives.c (glue_header_name): Update call to cpp_spell_token.
1250 * internal.h (_cpp_interpret_identifier): New.
1251 * charset.c (_cpp_interpret_identifier): New.
1252 (_cpp_valid_ucn): Allow UCN version of '$'.
1253 * lex.c (lex_identifier): Add extra parameter to indicate if initial
1254 character was '$' or '\'. Support identifiers with UCNs.
1255 (forms_identifier_p): Allow UCNs.
1256 (_cpp_lex_direct): Pass extra parameter to lex_identifier.
1257 (utf8_to_ucn): New.
1258 (cpp_spell_token): Add FORSTRING parameter. Use it.
1259 (cpp_token_as_text): Update call to cpp_spell_token.
1260 (cpp_output_token): Write UCNs back out.
1261 (stringify_arg): Update call to cpp_spell_token.
1262 (paste_tokens): Likewise.
1263 (cpp_macro_definition): Likewise.
1264 * macro.c (stringify_arg): Likewise.
1265 (paste_tokens): Likewise.
1266 (cpp_macro_definition): Likewise.
1267 * include/cpplib.h: Add parameter to cpp_spell_token.
1268
73096711
JJ
12692005-03-04 Jakub Jelinek <jakub@redhat.com>
1270
1271 PR bootstrap/20282
1272 PR bootstrap/20305
1273 * macro.c (replace_args, cpp_get_token): Copy whole
1274 cpp_token_u instead of just cpp_string field from it.
1275
2203a881
DP
12762005-02-28 Devang Patel <dpatel@apple.com>
1277
1278 * directives.c (do_line): Save sysp early before line table is
1279 realloc'ed.
1ed17cd5 1280
c5ff069d
ZW
12812005-02-20 Zack Weinberg <zack@codesourcery.com>
1282
1283 PR 18785
1284 * charset.c (LAST_POSSIBLY_BASIC_SOURCE_CHAR): New helper macro.
1285 (cpp_host_to_exec_charset): New function.
1286 * include/cpplib.h: Declare cpp_host_to_exec_charset.
1287
04c90eea
DP
12882005-02-19 Devang Patel <dpatel@apple.com>
1289
1290 * charset.c (_cpp_convert_input): Check '\r' before inserting
1291 '\n' at the end.
c5ff069d 1292
6da55c00
EC
12932005-02-15 Eric Christopher <echristo@redhat.com>
1294
1295 PR preprocessor/19077
1296 * macro.c (cpp_macro_definition): Move handling of whitespace
1297 to PREV_WHITE conditional. Remove overloading of len
1298 variable.
1299
31c3e631
KH
13002005-02-14 Kazu Hirata <kazu@cs.umass.edu>
1301
1302 * directives.c, files.c, init.c, internal.h, macro.c, pch.c,
1303 traditional.c: Update copyright.
1304
be0f1e54
PB
13052005-02-14 Paolo Bonzini <bonzini@gnu.org>
1306
1307 PR bootstrap/19818
1308 * configure.ac: Check for declaration of basename and getopt.
1309 * config.in: Regenerate.
1310 * configure: Regenerate.
1311 * internal.h (ustrcspn): New.
1312 * macro.c (create_iso_definition): Fix allocation of memory.
1313 (padding_token): Add cast to remove const-ness.
1314 * pch.c (cpp_read_state): Use ustrcspn.
1315
ecddfb39
MS
13162005-02-08 Mike Stump <mrs@apple.com>
1317
1318 * files.c (pchf_adder): Remove.
1319 (struct pchf_adder_info): Likewise.
1320 (_cpp_save_file_entries): Write out all files so that #import works.
1321
9fcdd891
JM
13222005-01-23 Joseph S. Myers <joseph@codesourcery.com>
1323
1324 * configure: Regenerate.
1325
ecfd72e7
TS
13262005-01-11 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
1327
1328 * include/cpplib.h (c_lang): Fix comment to say cpp_create_reader.
1329
6c25a4f7 1330 * include/cpplib.h: Also update copyright years.
c5ff069d 1331
942926ad
GK
13322005-01-03 Geoffrey Keating <geoffk@apple.com>
1333
1334 * files.c (_cpp_find_file): Add files found by search_path_exhausted
1335 to the list of all files.
1336
a2566ae9
GDR
13372005-01-01 Gabriel Dos Reis <gdr@integrable-solutions.net>
1338
1339 * internal.h: Update references to Cpp lib filenames.
1340 * directives.c: Likewise.
1341 * init.c: Likewise.
1342 * macro.c: Likewise.
1343 * traditional.c: Likewise.
1344
1b449375
EB
13452004-12-15 Eric Botcazou <ebotcazou@libertysurf.fr>
1346
1347 PR preprocessor/15167
1348 * files.c (destroy_cpp_file): New function.
1349 (should_stack_file): Make a new file if the
1350 compared file is still stacked.
1351
28303828
NN
13522004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
1353
c5ff069d 1354 PR preprocessor/17610
28303828
NN
1355 * directives.c (do_include_common): Error out if an empty filename
1356 is given for #include (or #include_next or #import).
1357
c812785a
RS
13582004-11-27 Roger Sayle <roger@eyesopen.com>
1359 Zack Weinberg <zack@codesourcery.com>
1360
1361 * internal.h: Replace all uses of uchar with unsigned char.
1362 * include/cpp-id-data.h: Likewise. Guard typedef of uchar
1363 with !IN_GCC, so uchar is only defined whilst building libcpp.
1364
f91eaa01
KC
13652004-11-24 Kelley Cook <kcook@gcc.gnu.org>
1366
1367 * aclocal.m4: Regenerate.
1368
f78ce0c2
RS
13692004-11-24 Roger Sayle <roger@eyesopen.com>
1370
1371 PR preprocessor/15824
1372 * configure.ac: Correct HAVE_UCHAR test to #include <sys/types.h>
1373 directly, instead of the non-existant "system.h" and "ansidecl.h".
1374 * configure: Regenerate.
1375
b5b3e36a 13762004-11-23 Daniel Jacobowitz <dan@codesourcery.com>
c5ff069d 1377 Joseph Myers <joseph@codesourcery.com>
b5b3e36a
DJ
1378
1379 * internal.h (struct lexer_state): Add in_deferred_pragma.
1380 * directives.c (struct pragma_entry): Add allow_expansion.
1381 (insert_pragma_entry): Take allow_expansion flag.
1382 (register_pragma): Likewise.
1383 (cpp_register_pragma): Likewise.
1384 (_cpp_init_internal_pragmas): Update calls to cpp_register_pragma.
1385 (do_pragma): Honor allow_expansion.
1386 (cpp_handle_deferred_pragma): Set in_deferred_pragma.
1387 * include/cpplib.h (cpp_register_pragma): Update prototype.
1388
a8e68029 13892004-11-18 Daniel Jacobowitz <dan@codesourcery.com>
c5ff069d 1390 Mark Mitchell <mark@codesourcery.com>
a8e68029
DJ
1391
1392 * configure.ac (i[34567]86-*-solaris2.1[0-9]*): Set
1393 need_64bit_hwint=yes.
1394 * configure: Regenerate.
1395
50f47ee0
JM
13962004-11-09 Joseph S. Myers <joseph@codesourcery.com>
1397
1398 * Makefile.in ($(PACKAGE).pot): New rule. Depend on
1399 po/$(PACKAGE).pot.
1400 (po/$(PACKAGE).pot): Use ":" instead of "," in --keyword
1401 arguments. Add keywords _, N_, SYNTAX_ERROR and SYNTAX_ERROR2.
1402 Remove local srcdir path from generated file.
1403
968e08d6 14042004-11-04 Zack Weinberg <zack@codesourcery.com>
c5ff069d 1405 Gerald Pfeifer <gerald@pfeifer.com>
968e08d6
ZW
1406
1407 * internal.h (HAVE_ICONV): Undefine if we do not have HAVE_ICONV_H
1408 as well.
1409
3da3d587
ZW
14102004-10-27 Zack Weinberg <zack@codesourcery.com>
1411
1412 PR 18075
1413 * directives.c (do_pragma): Do not defer pragmas which are unknown.
1414 (cpp_handle_deferred_pragma): Add cast to silence warning.
1415
ac24fc25
JM
14162004-10-14 Joseph S. Myers <jsm@polyomino.org.uk>
1417
1418 * errors.c (_cpp_begin_message): Print "error: " for errors.
1419
7731405b
AJ
14202004-10-10 Andreas Jaeger <aj@suse.de>
1421
1422 * makedepend.c: Include mkdeps.h for prototype of deps_add_vpath.
1423 * Makefile.in (makedepend.o): Add dependency on mkdeps.h.
1424
646544e3
AP
14252004-10-08 Andrew Pinski <pinskia@physics.uc.edu>
1426
1427 * pch.c (cpp_write_pch_state): Remove variable z as it is not
1428 used.
1429 (cpp_read_state): Remove unused variables, m, d and mac_count.
1430
67a74146
PB
14312004-09-29 Per Bothner <per@bothner.com>
1432
1433 * directives.c (cpp_handle_deferred_pragma): Save, clear and restore
1434 cb.line_change. Otherwise do_pragma will call the line_change
1435 call-back with a meaningless line number.
1436
018a4785
ZW
14372004-09-24 Zack Weinberg <zack@codesourcery.com>
1438
1439 * configure.ac: Move AC_PROG_MAKE_SET, AC_PROG_INSTALL to
1440 programs cluster. Use ACX_PROG_CC_WARNING_OPTS,
1441 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC, ACX_PROG_CC_WARNINGS_ARE_ERRORS.
1442 * aclocal.m4, configure: Regenerate.
1443 * init.c: Include localedir.h.
1444 * Makefile.in (WARN_CFLAGS, ALL_CFLAGS): New variables.
1445 (DEFS): Delete.
1446 (.c.o): Use $(ALL_CFLAGS).
1447 (localedir.h, localedir.hs): New rules.
1448 (clean): Use rm -rf to remove directories.
1449 (distclean): Also delete localedir.h and localedir.hs.
1450 (init.o): Update dependencies.
1451
88fa57d7
KC
14522004-09-22 Kelley Cook <kcook@gcc.gnu.org>
1453
1454 * Makefile.in (aclocal.m4): Update dependencies.
1455 * configure.ac (AC_CONFIG_MACRO_DIR): New.
1456 * aclocal.m4, configure: Regenerate.
1457
8f8e9aa5
ZW
14582004-09-17 Zack Weinberg <zack@codesourcery.com>
1459
a29f62d9
ZW
1460 * charset.c (_cpp_destroy_iconv, emit_numeric_escape)
1461 (_cpp_convert_input, _cpp_default_encoding): Add comments.
1462 Some other comments in this file also tweaked.
1463
8f8e9aa5
ZW
1464 * directives.c (do_pragma): Save current buffer position
1465 before lexing the pragma keywords; don't call
1466 _cpp_backup_tokens in the defer_pragmas case.
1467
a2981930
PB
14682004-09-15 Per Bothner <per@bothner.com>
1469
1470 * include/line-map.h (line_map_start): Add parameter names so
1471 preceding comment makes sense.
1472 (linemap_add): Remove from comment mention of non-existing parameter.
1473
21b11495
ZW
14742004-09-09 Matt Austern <austern@apple.com>
1475 Zack Weinberg <zack@codesourcery.com>
1476
1477 * include/cpplib.h (TTYPE_TABLE): Remove CPP_ and SPELL_
1478 prefixes throughout. Add entry for PRAGMA. Remove
1479 unnecessary "= 0" from EQ.
1480 (enum cpp_ttype): Adjust OP and TK definitions to restore
1481 prefixes, via token-paste.
1482 (CPP_LAST_EQ, CPP_FIRST_DIGRAPH, CPP_LAST_PUNCTUATOR, CPP_LAST_CPP_OP):
1483 Change from #defines to additional cpp_ttype enumerators.
1484 (struct cpp_options): Add defer_pragmas.
1485 (cpp_handle_deferred_pragma): Prototype new interface.
1486
1487 * internal.h (struct cpp_reader): Add directive_result.
1488 * directives.c (struct pragma_entry): Add is_internal field;
1489 give boolean fields type bool.
1490 (start_directive): Initialize pfile->directive_result.type.
1491 (_cpp_do__Pragma): Likewise.
1492 (run_directive): Do not crash if pfile->buffer->prev is NULL.
1493 (insert_pragma_entry): Add 'internal' argument; set new->is_internal
1494 from it.
1495 (register_pragma): New static function, bulk of former
1496 cpp_register_pragma here; add 'internal' argument, pass along
1497 to insert_pragma_entry.
1498 (cpp_register_pragma): Now a wrapper around register_pragma which
1499 always passes false for 'internal' argument.
1500 (_cpp_init_internal_pragmas): Call register_pragma directly, passing
1501 true for 'internal'.
1502 (do_pragma): If CPP_OPTION (pfile, defer_pragmas) and this isn't
1503 an internal pragma, save text till the end of the line as a CPP_PRAGMA
1504 token instead of executing the pragma.
1505 (cpp_handle_deferred_pragma): New interface.
1506 * lex.c (token_spellings): Adjust OP and TK definitions to
1507 match changes to cpplib.h.
1508 (_cpp_lex_token): Check for a directive-result token and
1509 return it if present.
1510 (cpp_token_val_index): Handle CPP_PRAGMA.
1511 * macro.c (cpp_builtin_macro_text): Correct comment.
1512 (builtin_macro): Handle directive-result tokens from _cpp_do__Pragma.
1513
0fd9e8dd
SB
15142004-09-06 Serge Belyshev <belyshev@lubercy.com>
1515
1516 PR preprocessor/14699
1517 * symtab.c (ht_dump_statistics): Change type of sum_of_squares
1518 from size_t to double.
1519
39b8ce7f
AS
15202004-08-28 Andreas Schwab <schwab@suse.de>
1521 Andreas Jaeger <aj@suse.de>
1522
1523 * configure.ac: Set PACKAGE correctly.
1524 * configure: Regenerated.
1525
5d1f4b27
PB
15262004-08-25 Paolo Bonzini <bonzini@gnu.org>
1527
1528 * Makefile.in: Add back top_builddir.
1529
078e3ffe
PB
15302004-08-25 Paolo Bonzini <bonzini@gnu.org>
1531
1532 * configure.ac: Replace Automake macro invocations
1533 with manual Autoconf checks and substitutions.
1534 * configure: Regenerate.
1535 * aclocal.m4: Regenerate.
1536 * config.in: Regenerate.
1537 * Makefile.am: Removed.
1538 * Makefile.in: Heavy simplification and reorganization.
1539
b3f8d95d
MM
15402004-08-09 Mark Mitchell <mark@codesourcery.com>
1541
1542 * configure.ac (arm*-*-eabi*): New target.
1543 (arm*-*-symbianelf*): Likewise.
1544 * configure: Regenerated.
1545
72bb2c39
BI
15462004-07-24 Bernardo Innocenti <bernie@develer.com>
1547
1548 * internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove.
1549 * directives.c: Use XNEW-family macros from libiberty.
1550 * lex.c: Likewise.
1551 * macro.c: Likewise.
1552 * cpplib.h (cpp_deps_style): Export enum with name.
1553
21b11495 15542004-07-23 Matthias Klose <doko@debian.org>
72bb2c39 1555
21b11495 1556 * init.c (init_library): Use PACKAGE for the text domain.
85eac2a0 1557
a23ee064
AP
15582004-07-16 Andris Pavenis <pavenis@latnet.lv>
1559
1560 PR preprocessor/16366
1561 * internal.h (struct cpp_reader): New field dir_hash.
1562 * files.c (make_cpp_dir): Use dir_hash, not file_hash.
1563 (_cpp_init_files, _cpp_cleanup_files): Update for new field.
1564
a09d4744
NB
15652004-07-04 Neil Booth <neil@duron.akihabara.co.uk>
1566
1567 PR preprocessor/16192
1568 PR preprocessor/15913
1569 PR preprocessor/15572
1570 * expr.c (_cpp_parse_expr): Handle remaining cases where an
1571 expression is missing.
1572 * init.c (post_options): Traditional cpp doesn't do // comments.
1573
f58f7def
PB
15742004-06-30 Per Bothner <per@bothner.com>
1575
1576 * include/line-map.h (fileline): Remove old typedef.
1577 * internal.h (struct cpp_reader): Use source_location typedef instead.
1578
e83d8d43
ZW
15792004-06-26 Zack Weinberg <zack@codesourcery.com>
1580
1581 Partially revert patch of 2004-06-05.
1582 * files.c (search_cache): Remove pfile argument. Don't check
1583 for file that would be found by "" or <> search here...
1584 (_cpp_find_file): ...do it here, before calling find_file_in_dir.
1585 Do not apply directory-of-current-file correction to files
1586 found by this check. Rearrange code slightly.
1587
c0d578e6
GK
15882004-06-21 Geoffrey Keating <geoffk@apple.com>
1589
1590 * files.c (should_stack_file): Correct swapped parameters to call
1591 to cb.read_pch.
1592 * pch.c (cpp_valid_state): Handle -fpreprocessed.
1593
159d5224
PB
15942004-06-15 Paolo Bonzini <bonzini@gnu.org>
1595
1596 * Makefile.in: Regenerate with automake 1.8.5.
1597 * aclocal.m4: Likewise.
1598 * configure: Regenerate.
1599
2fac9c01
ZW
16002004-06-11 Zack Weinberg <zack@codesourcery.com>
1601
1602 * configure.ac: Don't invoke ACX_HEADER_STDBOOL.
1603 * configure, config.in: Regenerate.
1604 * system.h: Unconditionally define bool as unsigned char,
1605 BOOL_BITFIELD as unsigned int.
1606 * .cvsignore: New file.
1607
d8044160
GK
16082004-06-09 Geoffrey Keating <geoffk@apple.com>
1609
1610 * traditional.c (push_replacement_text): Set macro->traditional.
1611 (save_replacement_text): Likewise.
1612 * pch.c (cpp_write_pch_state): Don't write list of defined macros.
1613 (struct save_macro_item): Delete.
1614 (struct save_macro_data): Use a character array not the previous
1615 structured format.
1616 (save_macros): Save macro as text not as internal structures.
1617 (cpp_prepare_state): Update for changes to save_macro_data.
1618 (cpp_read_state): Don't read macros defined in PCH. Restore
2cf22451 1619 -D macros as text.
d8044160
GK
1620 * macro.c (create_iso_definition): Honour alloc_subobject.
1621 Clear traditional flag.
1622 (_cpp_create_definition): Honour alloc_subobject.
1623 * lex.c (cpp_token_val_index): New.
1624 * internal.h: Include cpp-id-data.h.
1625 (uchar): Move definition to cpp-id-data.h.
1626 (U): Likewise.
1627 (cpp_macro): Likewise.
1628 * directives.c (struct answer): Move to cpp-id-data.h.
1629 (do_assert): Honour alloc_subobject.
2cf22451
ZW
1630
1631 * include/symtab.h (struct ht): Add field 'alloc_subobject'.
1632 * include/cpplib.h (struct cpp_string): Add GTY marker.
1633 (enum cpp_token_fld_kind): New.
1634 (struct cpp_token): Add GTY markers.
1635 (cpp_token_val_index): Prototype.
1636 (CPP_HASHNODE_VALUE_IDX): New.
1637 (struct cpp_hashnode): Don't skip fields of 'value' when marking.
1638 * include/cpp-id-data.h: New file.
d8044160 1639
0ca8e815
PB
16402004-06-09 Paolo Bonzini <bonzini@gnu.org>
1641
1642 * Makefile.am (all-local): New.
1643 * Makefile.in: Regenerate.
1644
b51fa00f
RS
16452004-06-06 Roger Sayle <roger@eyesopen.com>
1646
1647 * Makefile.am (LIBICONV): Declare.
1648 (makedepend_LDADD): Use LIBICONV.
1649 * Makefile.in: Regenerate.
1650
5e2f3f39
AP
16512004-06-05 Andrew Pinski <pinskia@physics.uc.edu>
1652
1653 * Makefile.am (LIBINTL): Declare
1654 (makedepend_LDADD): Use LIBINTL.
1655 * Makefile.in: Regenerate.
1656
c6e83800
ZW
16572004-06-05 Zack Weinberg <zack@codesourcery.com>
1658
1659 * Makefile.am: Add makedepend.
1660 * Makefile.in, aclocal.m4: Regenerate.
1661 * charset.c: Insert a space to avoid a warning.
1662 * directives.c: Include mkdeps.h.
1663 (_cpp_handle_directive): Reenable macro expander if appropriate.
1664 (undefine_macros): Inline body of _cpp_free_definition for speed.
1665 Do not call undef callback or _cpp_warn_if_unused_macro.
1666 (cpp_get_deps): New interface.
1667 * files.c (search_cache): Add pfile argument. Check for file
1668 that would be found by "" or <> search here...
1669 (_cpp_find_file): ...not here. Correct recorded start_dir of
1670 files found by directory-of-current-file search that would be
1671 found by "" or <> search.
1672 * init.c (cpp_add_dependency_target): Delete.
1673 * internal.h (struct lexer_state): Add discarding_output flag.
1674 * lex.c (lex_identifier): Compute hash function while scanning.
1675 * macro.c (cpp_scan_nooutput): Disable macro expansion outside
1676 directives.
1677 * makedepend.c: New file.
1678 * mkdeps.c (struct deps): Add vpath vector.
1679 (apply_vpath, deps_add_vpath): New function.
1680 (deps_free): Free vpath vector.
1681 (deps_add_dep, deps_add_target): Use apply_vpath.
1682 * symtab.c (calc_hash): Use HT_HASHSTEP and HT_FINISH.
1683 (ht_lookup_with_hash): New function.
1684 * cpplib.h, mkdeps.h: Update prototypes.
1685 * symtab.h: Update prototypes.
1686 (HT_HASHSTEP, HT_FINISH): New macros.
1687
b453c95f
GK
16882004-05-29 Geoffrey Keating <geoffk@apple.com>
1689
1690 * symtab.c (ht_create): Set entries_owned.
1691 (ht_destroy): Honour entries_owned.
1692 (ht_expand): Likewise.
1693 (ht_load): New.
2cf22451
ZW
1694 * include/symtab.h (struct ht): New field 'entries_owned'
1695 (ht_load): New prototype.
b453c95f 1696
963e23c5
PB
16972004-05-26 Paolo Bonzini <bonzini@gnu.org>
1698
1699 PR bootstrap/15651
1700 * configure.ac: Fix m4 quoting when picking
1701 the size of HOST_WIDE_INT.
1702 * configure: Regenerate.
1703
0429bc77
PB
17042004-05-25 Paolo Bonzini <bonzini@gnu.org>
1705
1706 * Makefile.am: the correct directory for
1707 gettext include files is given by @INCINTL@.
1708 * Makefile.in: Regenerate.
1709
c86dd7db
PB
17102004-05-24 Paolo Bonzini <bonzini@gnu.org>
1711
1712 * system.h [!ENABLE_NLS]: dgettext takes two
1713 parameters.
1714
4f4e53dd
PB
17152004-05-23 Paolo Bonzini <bonzini@gnu.org>
1716
1717 Moved libcpp from the gcc subdirectory to the toplevel.
1718 * Makefile.am: New file.
1719 * Makefile.in: Regenerate.
1720 * configure.ac: New file.
1721 * configure: Regenerate.
1722 * config.in: Regenerate.
1723 * charset.c: Moved from gcc/cppcharset.c. Add note about
1724 brokenness of input charset detection. Adjust for change
1725 in name of cppucnid.h.
1726 * errors.c: Moved from gcc/cpperror.c. Do not include intl.h.
1727 * expr.c: Moved from gcc/cppexp.c.
1728 * files.c: Moved from gcc/cppfiles.c. Do not include intl.h.
1729 Remove #define of O_BINARY, it is in system.h.
1730 * identifiers.c: Moved from gcc/cpphash.c.
1731 * internal.h: Moved from gcc/cpphash.h. Change header
1732 guard name. All other files adjusted to match name change.
1733 * init.c: Moved from gcc/cppinit.c.
1734 (init_library) [ENABLE_NLS]: Call bindtextdomain.
1735 * lex.c: Moved from gcc/cpplex.c.
1736 * directives.c: Moved from gcc/cpplib.c.
1737 * macro.c: Moved from gcc/cppmacro.c.
1738 * pch.c: Moved from gcc/cpppch.c. Do not include intl.h.
1739 * traditional.c: Moved from gcc/cpptrad.c.
1740 * ucnid.h: Moved from gcc/cppucnid.h. Change header
1741 guard name.
1742 * ucnid.pl: Moved from gcc/cppucnid.pl.
1743 * ucnid.tab: Moved from gcc/cppucnid.tab. Change header
1744 guard name.
1745 * symtab.c: Moved from gcc/hashtable.c.
1746 * line-map.c: Moved from gcc. Do not include intl.h.
1747 * mkdeps.c: Moved from gcc.
1748 * system.h: New file.
2cf22451
ZW
1749 * include/cpplib.h: Moved from gcc. Change header guard name.
1750 * include/line-map.h: Moved from gcc. Change header guard name.
1751 * include/mkdeps.h: Moved from gcc. Change header guard name.
1752 * include/symtab.h: Moved from gcc/hashtable.h. Change header
1753 guard name.