OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2009-03-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2
3         * c.opt: Unify help texts for -Wdeprecated, -Wsystem-headers,
4         and -fopenmp.
5
6 2009-03-18  Eric Botcazou  <ebotcazou@adacore.com>
7
8         PR target/35180
9         * config/sparc/sparc.md (do_builtin_setjmp_setup): Prettify asm output.
10
11 2009-03-18  Sandra Loosemore  <sandra@codesourcery.com>
12
13         * doc/invoke.texi (Code Gen Options): Expand discussion of
14         -fno-common.
15
16 2009-03-18  Jakub Jelinek  <jakub@redhat.com>
17
18         * dse.c (struct group_info): Reorder fields for 64-bit hosts.
19         * matrix-reorg.c (struct matrix_info): Likewise.
20         * tree-ssa-loop-ivopts.c (struct ivopts_data): Likewise.
21         * rtl.h (struct mem_attrs): Likewise.
22         * df.h (struct df): Likewise.
23         * tree-data-ref.h (struct data_dependence_relation): Likewise.
24         * ira-int.h (struct ira_allocno): Likewise.
25         * df-scan.c (struct df_collection_rec): Likewise.
26         * ira.c (struct equivalence): Likewise.
27         * function.c (struct temp_slot): Likewise.
28         * cfgloop.h (struct loop): Likewise.
29
30         PR debug/39485
31         * function.c (use_register_for_decl): When not optimizing, disregard
32         register keyword for variables with types containing methods.
33
34 2009-03-18  Sebastian Pop  <sebastian.pop@amd.com>
35
36         PR middle-end/39447
37         * graphite.c (exclude_component_ref): Renamed contains_component_ref_p.
38         (is_simple_operand): Call contains_component_ref_p before calling data
39         reference analysis that would fail on COMPONENT_REFs.
40
41         * tree-vrp.c (search_for_addr_array): Fix formatting.
42
43 2009-03-18  Richard Guenther  <rguenther@suse.de>
44
45         * tree-vect-transform.c (vect_loop_versioning): Fold the
46         generated comparisons.
47         * tree-vectorizer.c (set_prologue_iterations): Likewise.
48         (slpeel_tree_peel_loop_to_edge): Likewise.
49
50 2009-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
51
52         PR middle-end/37805
53         * opts.c (print_specific_help): In addition to `undocumented',
54         accept `separate' and `joined' flags if passed alone.  Describe
55         output by the first matched one of those.
56         (common_handle_option): Skip over empty strings.
57         * gcc.c (display_help): Fix help string for `--help='.
58         * doc/invoke.texi (Option Summary, Overall Options): With
59         `--help=', classes and qualifiers can both be repeated, but
60         only the latter can be negated.  One should not pass only
61         negated qualifiers.  Fix markup and examples.
62
63         Revert
64         2008-10-14  Jakub Jelinek  <jakub@redhat.com>
65         PR middle-end/37805
66         * opts.c (common_handle_option): Don't ICE on -fhelp=joined
67         and -fhelp=separate.
68
69 2009-03-17  Jing Yu  <jingyu@google.com>
70
71         PR middle-end/39378
72         * function.h: Move is_thunk from rtl_data structure to function
73         structure.
74         * varasm.c (assemble_start_function): Change is_thunk from crtl to
75         cfun.
76         * config/alpha/alpha.c: Change is_thunk from crtl to cfun.
77         * config/rs6000/rs6000.c: Change is_thunk from crtl to cfun.
78         * config/arm/arm.h: Change is_thunk from crtl to cfun.
79
80 2009-03-17  Uros Bizjak  <ubizjak@gmail.com>
81
82         PR target/39482
83         * config/i386/i386.md (*truncdfsf_mixed): Avoid combining registers
84         from different units in a single alternative.
85         (*truncdfsf_i387): Ditto.
86         (*truncxfsf2_mixed): Ditto.
87         (*truncxfdf2_mixed): Ditto.
88
89 2009-03-17  Jakub Jelinek  <jakub@redhat.com>
90
91         * dwarf2out.c (dwarf2out_imported_module_or_decl_1): Allow
92         non-NAMESPACE_DECL IMPORTED_DECL_ASSOCIATED_DECL.
93
94         PR debug/39474
95         * tree-ssa-live.c (remove_unused_locals): Don't remove local
96         unused non-artificial variables when not optimizing.
97
98         PR debug/39471
99         * dwarf2out.c (dwarf2out_imported_module_or_decl_1): Emit
100         DW_TAG_imported_module even if decl is IMPORTED_DECL with
101         NAMESPACE_DECL in its DECL_INITIAL.
102
103         PR middle-end/39443
104         * optabs.c (set_user_assembler_libfunc): New function.
105         * expr.h (set_user_assembler_libfunc): New prototype.
106         * c-common.c: Include libfuncs.h.
107         (set_builtin_user_assembler_name): Call set_user_assembler_libfunc
108         for memcmp, memset, memcpy, memmove and abort.
109         * Makefile.in (c-common.o): Depend on libfuncs.h.
110
111         PR debug/39412
112         * dwarf2out.c (gen_inlined_enumeration_type_die,
113         gen_inlined_structure_type_die, gen_inlined_union_type_die,
114         gen_tagged_type_instantiation_die): Removed.
115         (gen_decl_die): For TYPE_DECL_IS_STUB with non-NULL decl_origin
116         do nothing.
117
118 2009-03-17  Janis Johnson  <janis187@us.ibm.com>
119
120         PR testsuite/38526
121         * Makefile.in (site.exp): Rename TEST_GCC_EXEC_PREFIX and comment
122         its use.
123         (check-%): Don't set GCC_EXEC_PREFIX when invoking runtest.
124         (check-parallel-%): Ditto.
125         (check-consistency): Ditto.
126
127 2009-03-17  Kai Tietz  <kai.tietz@onevision.com>
128
129         * ipa-struct-reorg.c (create_general_new_stmt): Initialize
130         local variable rhs by NULL_TREE.
131
132 2009-03-17  H.J. Lu  <hongjiu.lu@intel.com>
133
134         PR target/39477
135         * doc/extend.texi: Correct register behavior for regparm on Intel 386.
136
137 2009-03-17  H.J. Lu  <hongjiu.lu@intel.com>
138
139         PR target/39476
140         * config/i386/i386.c (ix86_function_regparm): Rewrite for 64bit.
141
142 2009-03-17  H.J. Lu  <hongjiu.lu@intel.com>
143
144         PR target/39473
145         * config/i386/i386.c (ix86_expand_call): Check extra clobbers
146         for ms->sysv ABI calls only in 64bit mode.
147
148         * config/i386/i386.md (untyped_call): Support 32bit.
149
150 2009-03-16  H.J. Lu  <hongjiu.lu@intel.com>
151
152         * doc/extend.texi: Replace x86_65 with x86_64.
153
154 2009-03-16  Jakub Jelinek  <jakub@redhat.com>
155
156         PR tree-optimization/39455
157         * tree-ssa-loop-niter.c (number_of_iterations_lt_to_ne): Fix types
158         mismatches for POINTER_TYPE_P (type).
159         (number_of_iterations_le): Likewise.
160
161 2009-03-16  Hariharan Sandanagobalane <hariharan@picochip.com>
162
163         * config/picochip/picochip.c: Removed profiling support.
164         * config/picochip/picochip.md: Removed profiling instruction.
165         * config/picochip/picochip.h: Removed profiling builtin.
166
167 2009-03-16  Joseph Myers  <joseph@codesourcery.com>
168
169         * doc/install.texi (--with-host-libstdcxx): Document.
170
171 2009-03-14  Anatoly Sokolov  <aesok@post.ru>
172
173         PR target/34299
174         * config/avr/avr.c (avr_handle_fndecl_attribute): Move code for
175         generate a warning if the function name does not begin with
176         "__vector" and the function has either the 'signal' or 'interrupt'
177         attribute, from here to ...
178         (avr_declare_function_name): ...here. New function.
179         * config/avr/avr.h (ASM_DECLARE_FUNCTION_NAME): Redefine.
180         * config/avr/avr-protos.h (avr_declare_function_name): Declare.
181
182 2009-03-14  Jakub Jelinek  <jakub@redhat.com>
183
184         PR bootstrap/39454
185         * cse.c (fold_rtx): Don't modify original const_arg1 when
186         canonicalizing SHIFT_COUNT_TRUNCATED shift count, do it on a
187         separate variable instead.
188         * rtlanal.c (nonzero_bits1) <case ASHIFTRT>: Don't assume anything
189         from out of range shift counts.
190         (num_sign_bit_copies1) <case ASHIFTRT, case ASHIFT>: Similarly.
191
192 2008-03-13  Catherine Moore  <clm@codesourcery.com>
193
194         * gcc/config/i386/x-mingw32 (host-mingw32.o): Replace
195         diagnostic.h with $(DIAGNOSTIC_H).
196
197 2008-03-12  Jakub Jelinek  <jakub@redhat.com>
198
199         PR target/39431
200         * config/i386/predicates.md (cmpxchg8b_pic_memory_operand): New
201         predicate.
202         * config/i386/sync.md (sync_compare_and_swap<mode>,
203         sync_compare_and_swap_cc<mode>): For DImode with -m32 -fpic check
204         if operands[1] is cmpxchg8b_pic_memory_operand, if not force address
205         into a register.
206         (sync_double_compare_and_swapdi_pic,
207         sync_double_compare_and_swap_ccdi_pic): Require operand 1 to be
208         cmpxchg8b_pic_memory_operand instead of just memory_operand.
209
210 2009-03-12  H.J. Lu  <hongjiu.lu@intel.com>
211
212         PR target/39445
213         * config/i386/i386.c (ix86_expand_push): Don't set memory alignment.
214
215 2009-03-12  H.J. Lu  <hongjiu.lu@intel.com>
216
217         PR target/39327
218         * config/i386/sse.md (avx_addsubv8sf3): Correct item bits.
219         (avx_addsubv4df3): Likewise.
220         (*avx_addsubv4sf3): Likewise.
221         (sse3_addsubv4sf3): Likewise.
222
223 2009-03-12  H.J. Lu  <hongjiu.lu@intel.com>
224
225         PR target/38824
226         * config/i386/i386.md: Compare REGNO on the new peephole2 patterns.
227
228 2009-03-12  Vladimir Makarov  <vmakarov@redhat.com>
229
230         PR debug/39432
231         * ira-int.h (struct allocno): Fix comment for calls_crossed_num.
232         * ira-conflicts.c (ira_build_conflicts): Prohibit call used
233         registers for allocnos created from user-defined variables.
234
235 2009-03-11  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
236
237         PR target/39181
238         * config/spu/spu.c (spu_expand_mov): Handle invalid subregs
239         of non-integer mode as well.
240
241 2009-03-11  Adam Nemet  <anemet@caviumnetworks.com>
242
243         * gimplify.c (gimplify_call_expr): Don't set CALL_CANNOT_INLINE_P
244         for functions for which the parameter types are unknown.
245
246 2009-03-11  Jakub Jelinek  <jakub@redhat.com>
247
248         PR target/39137
249         * cfgexpand.c (get_decl_align_unit): Use LOCAL_DECL_ALIGNMENT macro.
250         * defaults.h (LOCAL_DECL_ALIGNMENT): Define if not yet defined.
251         * config/i386/i386.h (LOCAL_DECL_ALIGNMENT): Define.
252         * config/i386/i386.c (ix86_local_alignment): For
253         -m32 -mpreferred-stack-boundary=2 use 32-bit alignment for
254         long long variables on the stack to avoid dynamic realignment.
255         Allow the first argument to be a decl rather than type.
256         * doc/tm.texi (LOCAL_DECL_ALIGNMENT): Document.
257
258 2009-03-11  Nick Clifton  <nickc@redhat.com>
259
260         PR target/5362
261         * config/mcore/mcore.opt: Remove deprecated m4align and m8align
262         options.
263         Add description to mno-lsim option.
264         * config/mcore/mcore.h: Remove comment about deprecated m4align
265         option.
266         (TARGET_DEFAULT): Remove deprecated MASK_M8ALIGN.
267         * doc/invoke.texi: Add description of mno-lsim and
268         mstack-increment options.
269
270         * config/fr30/fr30.opt: Document the -mno-lsim option.
271         * doc/invoke.texi: Add descriptions of the FR30's -msmall-model
272         and -mno-lsim options.
273
274 2009-03-11  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
275
276         * fold-const.c (fold_comparison): Only call fold_inf_compare
277         if the mode supports infinities.
278
279 2009-03-11  Jason Merrill  <jason@redhat.com>
280
281         PR debug/39086
282         * tree-nrv.c (tree_nrv): Don't do this optimization if the front
283         end already did.  Notice GIMPLE_CALL modifications of the result.
284         Don't copy debug information from an ignored decl or a decl from
285         another function.
286
287 2009-03-10  Richard Guenther  <rguenther@suse.de>
288             Nathan Froyd  <froydnj@codesourcery.com>
289
290         PR middle-end/37850
291         * libgcc2.c (__mulMODE3): Use explicit assignments to form the result.
292         (__divMODE3): Likewise.
293
294 2009-03-09  Jakub Jelinek  <jakub@redhat.com>
295
296         PR tree-optimization/39394
297         * gimplify.c (gimplify_type_sizes): Gimplify DECL_SIZE and
298         DECL_SIZE_UNIT of variable length FIELD_DECLs.
299
300 2009-03-09  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
301
302         * recog.c (verfiy_changes): Disallow renaming of hard regs in
303         inline asms for register asm ("") declarations.
304
305 2009-03-09  Eric Botcazou  <ebotcazou@adacore.com>
306
307         * fold-const.c (fold_unary): Fix comment.
308
309 2009-03-07  Jan Hubicka  <jh@suse.cz>
310
311         PR target/39361
312         * tree-inline.c (setup_one_parameter): Do replacement of const argument
313         by constant in SSA form.
314
315 2009-03-07  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
316
317         PR middle-end/38028
318         * function.c (assign_parm_setup_stack): Use STACK_SLOT_ALIGNMENT to
319         determine alignment passed to assign_stack_local.
320         (assign_parms_unsplit_complex): Likewise.
321         * except.c (sjlj_build_landing_pads): Likewise.
322
323 2009-03-06  Jakub Jelinek  <jakub@redhat.com>
324
325         PR middle-end/39360
326         * tree-flow.h (add_referenced_var): Return bool instead of void.
327         * tree-dfa.c (add_referenced_var): Return result of
328         referenced_var_check_and_insert call.
329         * tree-inline.c (expand_call_inline): Call add_referenced_var instead
330         of referenced_var_check_and_insert.
331
332         PR debug/39372
333         * dwarf2out.c (add_abstract_origin_attribute): Return origin_die.
334         (gen_variable_die): Emit DW_AT_location on abstract static variable's
335         DIE, don't emit it if abstract origin already has it.
336         * tree-cfg.c (remove_useless_stmts_bind): GIMPLE_BINDs with any
337         BLOCK_NONLOCALIZED_VARS in its gimple_bind_block aren't useless.
338
339 2009-03-06  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
340
341         * genpreds.c: (needs_variable): Fix parentheses at variable name
342         detection.
343         (write_tm_constrs_h): Indent generated code.
344
345 2009-03-06  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
346
347         * doc/extend.texi (Function Attributes): Add documentation
348         for isr attributes.
349
350 2009-03-06  Jakub Jelinek  <jakub@redhat.com>
351
352         PR debug/39387
353         * dwarf2out.c (dwarf2out_imported_module_or_decl_1): For IMPORTED_DECL
354         take locus from its DECL_SOURCE_LOCATION instead of input_location.
355
356 2009-03-05  Bernd Schmidt  <bernd.schmidt@analog.com>
357
358         * config/bfin/bfin.c (bfin_discover_loop): When retrying fails, mark
359         the loop as bad.
360
361 2009-03-05  Jakub Jelinek  <jakub@redhat.com>
362
363         PR debug/39379
364         * tree-cfg.c (remove_useless_stmts_bind): Don't remove GIMPLE_BINDs
365         with blocks containing IMPORTED_DECLs in BLOCK_VARS.
366
367 2009-03-05  Uros Bizjak  <ubizjak@gmail.com>
368
369         * config/i386/i386.md (R8_REG, R9_REG): New constants.
370         * config/i386/i386.h (CONDITIONAL_REGISTER_USAGE): Use named
371         constants instead of magic numbers.
372         (HARD_REGNO_CALLER_SAVE_MODE): Ditto.
373         (QI_REG_P): Ditto.
374         * config/i386/i386.c (x86_64_int_parameter_registers): Ditto.
375         (x86_64_ms_abi_int_parameter_registers): Ditto.
376         (x86_64_int_return_registers): Ditto.
377         (ix86_maybe_switch_abi): Ditto.
378         (ix86_expand_call): Ditto for clobbered_registers array.
379         (ix86_hard_regno_mode_ok): Ditto.
380         (x86_extended_QIreg_mentioned_p): Ditto.
381
382 2009-03-05  J"orn Rennecke  <joern.rennecke@arc.com>
383
384         PR tree-optimization/39349
385         * cse.c (cse_insn): Fix loop to stop at VOIDmode.
386
387         * combine.c (gen_lowpart_for_combine): Use omode when generating
388         clobber.
389
390 2009-03-04  J"orn Rennecke  <joern.rennecke@arc.com>
391
392         PR rtl-optimization/39235
393         * loop-iv.c (get_simple_loop_desc): Use XCNEW.
394
395 2009-03-04  Zdenek Dvorak  <ook@ucw.cz>
396
397         * graphite.c (nb_reductions_in_loop): Update simple_iv arguments.
398
399 2009-03-04  Richard Guenther  <rguenther@suse.de>
400
401         PR tree-optimization/39362
402         * tree-ssa-sccvn.c (visit_use): Stores and copies from SSA_NAMEs
403         that occur in abnormal PHIs should be varying.
404
405 2009-03-04  Zdenek Dvorak  <ook@ucw.cz>
406
407         * tree-scalar-evolution.c (analyze_scalar_evolution_in_loop):
408         Extend comments.
409         (simple_iv):  Take loop as an argument instead of statement.
410         * tree-scalar-evolution.h (simple_iv): Declaration changed.
411         * tree-ssa-loop-niter.c (number_of_iterations_exit): Update calls
412         to simple_iv.
413         * tree-ssa-loop-ivopts.c (determine_biv_step, find_givs_in_stmt_scev):
414         Ditto.
415         * tree-parloops.c (loop_parallel_p, canonicalize_loop_ivs): Ditto.
416         * matrix-reorg.c (analyze_transpose): Ditto.
417         * tree-data-ref.c (dr_analyze_innermost): Ditto.
418         * tree-vect-analyze.c (vect_analyze_data_refs): Ditto.
419         * tree-predcom.c (ref_at_iteration): Ditto.
420         * tree-ssa-loop-prefetch.c (idx_analyze_ref): Ditto.
421
422 2009-03-04  Richard Guenther  <rguenther@suse.de>
423
424         PR tree-optimization/39358
425         * tree-ssa-structalias.c (do_sd_constraint): Fix check for
426         escaped_id and callused_id.
427         (solve_graph): Likewise.
428
429 2009-03-04  Richard Guenther  <rguenther@suse.de>
430
431         PR tree-optimization/39339
432         * tree-sra.c (try_instantiate_multiple_fields): Make it
433         no longer ICE on the above.
434
435 2009-03-03  Joseph Myers  <joseph@codesourcery.com>
436
437         * emit-rtl.c (adjust_address_1): Reduce offset to a signed value
438         that fits within Pmode.
439
440 2009-03-03  Steve Ellcey  <sje@cup.hp.com>
441
442         PR middle-end/10109
443         * tm.texi (LIBCALL_VALUE): Update description.
444
445 2009-03-03  Steve Ellcey  <sje@cup.hp.com>
446
447         PR middle-end/34443
448         * doc/extend.texi (section): Update description.
449
450 2009-03-03  H.J. Lu  <hongjiu.lu@intel.com>
451
452         PR middle-end/39345
453         * tree-inline.c (remapped_type): New.
454         (can_be_nonlocal): Call remapped_type instead of remap_type.
455
456 2009-03-03  Jakub Jelinek  <jakub@redhat.com>
457
458         PR fortran/39354
459         * gimplify.c (goa_stabilize_expr): Handle tcc_comparison,
460         TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR.
461
462 2009-03-03  Richard Guenther  <rguenther@suse.de>
463
464         PR middle-end/39272
465         * tree.c (tree_nonartificial_location): New function.
466         * tree.h (tree_nonartificial_location): Declare.
467         * builtins.c (expand_builtin_memory_chk): Provide location
468         of the call location for artificial function pieces.
469         (maybe_emit_chk_warning): Likewise.
470         (maybe_emit_sprintf_chk_warning): Likewise.
471         (maybe_emit_free_warning): Likewise.
472         * expr.c (expand_expr_real_1): Likewise.
473
474 2009-03-03  Jakub Jelinek  <jakub@redhat.com>
475
476         PR tree-optimization/39343
477         * tree-ssa-ccp.c (maybe_fold_offset_to_address): Don't check if
478         COMPONENT_REF t has ARRAY_TYPE.
479
480 2009-03-02  Sebastian Pop  <sebastian.pop@amd.com>
481
482         PR middle-end/39335
483         * tree-parloops.c (canonicalize_loop_ivs): Call fold_convert
484         when the type precision of the induction variable should be
485         larger than the type precision of nit.
486         (gen_parallel_loop): Update use of canonicalize_loop_ivs.
487         * graphite.c (graphite_loop_normal_form): Same.
488         * tree-flow.h (canonicalize_loop_ivs): Update declaration.
489
490 2009-03-02  Uros Bizjak  <ubizjak@gmail.com>
491
492         * config/i386/i386.md (ST?_REG, MM?_REG): New constants.
493         (*call_1_rex64_ms_sysv): Use named constants instead of magic
494         numbers to describe clobbered registers.
495         (*call_value_0_rex64_ms_sysv): Ditto.
496         * config/i386/mmx.md (mmx_emms): Ditto.
497         (mmx_femms): Ditto.
498
499 2009-03-02  Richard Sandiford  <rdsandiford@googlemail.com>
500
501         * config/mips/mips.c (mips_mdebug_abi_name): Fix the handling
502         of ABI_64.
503
504 2009-03-02  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
505
506         * config/spu/spu.c (TARGET_SECTION_TYPE_FLAGS): Define.
507         (spu_section_type_flags): New function.
508
509 2009-03-02  Uros Bizjak  <ubizjak@gmail.com>
510
511         * config/i386/i386.h (CONDITIONAL_REGISTER_USAGE): Do not copy
512         reg_class_contents of FLOAT_REGS into a temporary.
513
514 2009-03-02  Richard Guenther  <rguenther@suse.de>
515             Ira Rosen  <irar@il.ibm.com>
516
517         PR tree-optimization/39318
518         * tree-vect-transform.c (vectorizable_call): Transfer the EH region
519         information to the vectorized statement.
520
521 2009-03-01  Uros Bizjak  <ubizjak@gmail.com>
522
523         * config/i386/i386.h (CONDITIONAL_REGISTER_USAGE): Do not shadow "i"
524         variable.  Use defined names instead of magic constants for REX SSE
525         registers.
526
527 2009-03-01  Richard Guenther  <rguenther@suse.de>
528
529         PR tree-optimization/39331
530         * omp-low.c (lower_send_shared_vars): Do not receive new
531         values for the reference of DECL_BY_REFERENCE parms or results.
532
533 2009-03-01  Jan Hubicka  <jh@suse.cz>
534
535         PR debug/39267
536         * tree.h (BLOCK_NONLOCALIZED_VARS, BLOCK_NUM_NONLOCALIZED_VARS,
537         BLOCK_NONLOCALIZED_VAR): New macros.
538         (tree_block): Add nonlocalized_vars.
539         * dwarf2out.c (gen_formal_parameter_die, gen_variable_die,
540         gen_decl_die): Add origin argument.  Allow generation of die with
541         origin at hand only.
542         (gen_member_die, gen_type_die_with_usage, force_decl_die,
543         declare_in_namespace, gen_namescpace_die, dwarf2out_decl): Update use
544         of gen_*.
545         (gen_block_die): Fix checking for unused blocks.
546         (process_scope_var): Break out from .... ; work with origins only.
547         (decls_for_scope) ... here; process nonlocalized list.
548         (dwarf2out_ignore_block): Look for nonlocalized vars.
549         * tree-ssa-live.c (remove_unused_scope_block_p): Look for nonlocalized
550         vars.
551         (dump_scope_block): Dump them.
552         * tree-inline.c (remap_decls): Handle nonlocalized vars.
553         (remap_block): Likewise.
554         (can_be_nonlocal): New predicate.
555         (copy_bind_expr, copy_gimple_bind): Update use of remap_block.
556
557 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
558
559         * configure: Regenerate.
560
561 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
562
563         * optc-gen.awk: No need to duplicate option flags twice.
564         Reuse help texts for duplicate options which do not have any.
565
566         * gcc.c (display_help): Document --version.
567
568         * gcc.c (main): If print_help_list and verbose_flag, ensure
569         driver output comes before subprocess output.
570
571         * optc-gen.awk: Assign all remaining fields to help string,
572         space-separated, for multi-line help in *.opt.
573
574         * doc/invoke.texi (Warning Options): -Wsync-nand is C/C++ only.
575         -Wno-pedantic-ms-format is for MinGW targets only.
576
577         * doc/options.texi (Option file format): Fix bad indentation,
578         restoring dropped sentence.
579
580 2009-02-28  Jan Hubicka  <jh@suse.cz>
581
582         * tree-inline.c (tree_function_versioning): Output debug info.
583
584 2009-02-28  Jan Hubicka  <jh@suse.cz>
585
586         PR debug/39267
587         * tree-inline.c (setup_one_parameter): Do not copy propagate
588         arguments when not optimizing.
589
590 2009-02-28  H.J. Lu  <hongjiu.lu@intel.com>
591
592         PR target/39327
593         * config/i386/sse.md (avx_addsubv8sf3): Correct item bits.
594         (avx_addsubv4df3): Likewise.
595         (*avx_addsubv4sf3): Likewise.
596         (sse3_addsubv4sf3): Likewise.
597         (*avx_addsubv2df3): Likewise.
598         (sse3_addsubv2df3): Likewise.
599         (avx_unpckhps256): Correct item selectors.
600         (avx_unpcklps256): Likewise.
601         (avx_unpckhpd256): Likewise.
602         (avx_unpcklpd256): Likewise.
603
604 2009-02-28  Jan Hubicka  <jh@suse.cz>
605
606         * tree-inline.c (expand_call_inline): Avoid duplicate declarations of
607         static vars.
608         (copy_arguments_for_versioning): If var is declared don't declare it.
609         (tree_function_versioning): First setup substitutions and then copy
610         args.
611
612 2009-02-27  Jan Hubicka  <jh@suse.cz>
613
614         PR debug/39267
615         * cgraph.h (varpool_output_debug_info): Remove.
616         * cgraphunit.c (varpool_output_debug_info): Remove.
617         * dwarf2out.c (deferred_locations_struct): New struct
618         (deferred_locations): New type.
619         (deferred_locations_list): New static var.
620         (deffer_location): New function.
621         (gen_variable_die): Use it.
622         (decls_for_scope): Output info on local static vars.
623         (dwarf2out_finish): Process deferred locations.
624         * varpool.c (varpool_output_debug_info): Remove.
625
626 2009-02-27  Jan Hubicka  <jh@suse.cz>
627
628         PR debug/39267
629         * tree.h (TREE_PROTECTED): Fix comment.
630         (BLOCK_HANDLER_BLOCK): Remove.
631         (struct tree_block): Remove handler_block add body_block.
632         (inlined_function_outer_scope_p): New.
633         (is_body_block): Remove.
634         * dbxout.c (dbxout_block): Remove BLOCK_HANDLER_BLOCK.
635         * dwarf2out.c (is_inlined_entry_point): Remove.
636         (add_high_low_attributes): Use inlined_function_outer_scope_p.
637         (gen_block_die): Use is_inlined_entry_point check.  Remove body block
638         code.
639         * langhooks.h (struct lang_hooks): Remove no_bodu_blocks.
640         * gimplify.c (gimplify_expr): Gimplify body blocks.
641         * tree-ssa-live.c (remove_unused_scope_block_p): Allow removing wrapper
642         block with multiple subblocks.
643         (dump_scope_block): Prettier output; dump more flags and info.
644         (dump_scope_blocks): New.
645         (remove_unused_locals): Use dump_scope_blocks.
646         * tree-flow.h (dump_scope_blocks): Declare.
647         * tree-cfg.c (execute_build_cfg): Dump scope blocks.
648         * stmt.c (is_body_block): Remove.
649         * tree-inline.c (remap_block): Copy BODY_BLOCK info.
650         * langhooks-def.h (LANG_HOOKS_NO_BODY_BLOCKS): Remove.
651
652 2009-02-27  Sebastian Pop  <sebastian.pop@amd.com>
653
654         PR middle-end/39308
655         * graphite.c (graphite_loop_normal_form): Do not call 
656         number_of_iterations_exit from a gcc_assert.
657
658 2009-02-27  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
659
660         * gcc/config/s390/s390.c: (s390_swap_cmp): Look for conditional
661         jumps if COND is NULL.
662         (find_cond_jump): New function.
663         (s390_z10_optimize_cmp): Handling for reg-reg compares added.
664         * gcc/config/s390/s390.md: Remove z10_cobra attribute value.
665
666 2009-02-26  Uros Bizjak  <ubizjak@gmail.com>
667
668         * config/alpha/alpha.h (alpha_expand_mov): Return false if
669         force_const_mem returns NULL_RTX.
670
671 2009-02-26  Jan Hubicka  <jh@suse.cz>
672
673         PR debug/39267
674         * cgraph.h (varpool_output_debug_info): Remove.
675         * cgraphunit.c (varpool_output_debug_info): Remove.
676         * dwarf2out.c (deferred_locations_struct): New struct
677         (deferred_locations): New type.
678         (deferred_locations_list): New static var.
679         (deffer_location): New function.
680         (gen_variable_die): Use it.
681         (decls_for_scope): Output info on local static vars.
682         (dwarf2out_finish): Process deferred locations.
683         * varpool.c (varpool_output_debug_info): Remove.
684
685 2009-02-25  H.J. Lu  <hongjiu.lu@intel.com>
686
687         PR rtl-optimization/39241
688         * jump.c (rtx_renumbered_equal_p): Remove 2 superfluous calls
689         to subreg_offset_representable_p.
690
691 2009-02-25  Paolo Bonzini  <bonzini@gnu.org>
692
693         * regmove.c (regmove_optimize): Conform to struct rtl_opt_pass
694         execute function prototype.  Get f and nregs from max_reg_num
695         and get_insns.  Remove the first backward pass as it's dead,
696         guard the forward pass by flag_expensive_optimizations.
697         (rest_of_handle_regmove): Delete.
698         (pass_regmove): Replace it with regmove_optimize.
699
700 2009-02-25  Martin Jambor  <mjambor@suse.cz>
701
702         PR tree-optimization/39259
703         * tree-inline.c (initialize_cfun): Remove asserts for calls_setjmp and
704         calls_alloca function flags.
705         (copy_bb): Set calls_setjmp and alls_alloca function flags if such
706         calls are detected.
707
708 2009-02-25  Paolo Bonzini  <bonzini@gnu.org>
709
710         * regmove.c (discover_flags_reg, flags_set_1, mark_flags_life_zones,
711         flags_set_1_rtx, flags_set_1_set): Delete.
712         (regmove_optimize): Do not call mark_flags_life_zones.
713
714 2009-02-24  Julian Brown  <julian@codesourcery.com>
715
716         PR target/35965
717         * config/arm/arm.c (require_pic_register): Only set
718         cfun->machine->pic_reg once per function.
719
720 2009-02-24  Sandra Loosemore  <sandra@codesourcery.com>
721
722         * doc/invoke.texi (Link Options): Document an easier way to pass
723         options that take arguments to the GNU linker using -Xlinker and -Wl.
724
725 2009-02-24  Steve Ellcey  <sje@cup.hp.com>
726
727         PR target/33785
728         * doc/tm.texi (TARGET_C99_FUNCTIONS): Fix description.
729
730 2009-02-24  Richard Guenther  <rguenther@suse.de>
731
732         PR debug/39285
733         * dwarf2out.c (gen_enumeration_type_die): Handle CONST_DECLs.
734
735 2009-02-24  Richard Guenther  <rguenther@suse.de>
736             Zdenek Dvorak  <ook@ucw.cz>
737
738         PR tree-optimization/39233
739         * tree-ssa-loop-ivopts.c (add_candidate_1): Do not except pointers
740         from converting them to a generic type.
741
742 2009-02-23  Sebastian Pop  <sebastian.pop@amd.com>
743
744         PR tree-optimization/39260
745         * graphite.c (harmful_stmt_in_bb): Stop a SCoP when the basic block
746         contains a condition with a real type.
747         (build_scop_conditions_1): Conditions are always last_stmt of a bb.
748
749 2009-02-23  Jason Merrill  <jason@redhat.com>
750
751         PR c++/38880
752         * varasm.c (initializer_constant_valid_p) [PLUS_EXPR]: Check
753         narrowing_initializer_constant_valid_p.
754         (narrowing_initializer_constant_valid_p): Don't return 
755         null_pointer_node for adding a pointer to itself.
756
757 2009-02-23  Jan Hubicka  <jh@suse.cz>
758
759         PR c/12245
760         * ggc.h (htab_create_ggc): Use ggc_free to free hashtable when
761         resizing.
762
763 2009-02-23  Jan Hubicka  <jh@suse.cz>
764
765         PR tree-optimization/37709
766         * tree.c (block_ultimate_origin): Move here from dwarf2out.
767         * tree.h (block_ultimate_origin): Declare.
768         * dwarf2out.c (block_ultimate_origin): Move to tree.c
769         * tree-ssa-live.c (remove_unused_scope_block_p):
770         Eliminate blocks containig no instructions nor live variables nor
771         nested blocks.
772         (dump_scope_block): New function.
773         (remove_unused_locals): Enable removal of dead blocks by default;
774         enable dumping at TDF_DETAILS.
775
776 2009-02-21  H.J. Lu  <hongjiu.lu@intel.com>
777
778         * config/i386/i386.c (classify_argument): Don't allow COImode
779         and OImode.
780         (function_arg_advance_32): Don't allow OImode.
781         (function_arg_32): Likewise.
782         (function_value_32): Likewise.
783         (return_in_memory_32): Likewise.
784         (function_arg_64): Remove OImode comment.
785
786 2009-02-21  H.J. Lu  <hongjiu.lu@intel.com>
787
788         PR target/39261
789         * config/i386/i386.c (ix86_expand_vector_init_one_nonzero): Use
790         ix86_expand_vector_set for V4DImode in 64bit mode only.
791         (ix86_expand_vector_init_one_var): Likewise.
792
793 2009-02-21  Sebastian Pop  <sebastian.pop@amd.com>
794
795         * graphite.c (graphite_trans_loop_block): Adjust tile size to 51.
796
797 2009-02-21  Richard Sandiford  <rdsandiford@googlemail.com>
798
799         PR bootstrap/39257
800         * loop-iv.c: Revert last change.
801         * emit-rtl.c: Likewise.
802
803 2009-02-21  H.J. Lu  <hongjiu.lu@intel.com>
804
805         PR target/39256
806         * config/i386/i386.c (type_natural_mode): Remove an extra
807         space in the warning message.
808         (function_value_32): Handle 32-byte vector modes.
809         (return_in_memory_32): Likewise.
810
811 2009-02-21  Richard Sandiford  <rdsandiford@googlemail.com>
812
813         * loop-iv.c (truncate_value): New function.
814         (iv_subreg, get_iv_value, iv_number_of_iterations): Use it instead
815         of lowpart_subreg.
816         (lowpart_subreg): Move to...
817         * emit-rtl.c: ...here.
818
819 2009-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
820
821         * config/i386/winnt.c (i386_pe_asm_output_aligned_decl_common): Revert
822         accidental and undocumented change at revision 140860.
823
824 2009-02-21  Joseph Myers  <joseph@codesourcery.com>
825
826         * config/arm/arm.c (arm_gimplify_va_arg_expr): Update prototype to
827         take gimple_seq * arguments.
828         (arm_mangle_type): Use CONST_CAST_TREE on type argument passed to
829         types_compatible_p langhook.
830
831 2009-02-20  Mark Mitchell  <mark@codesourcery.com>
832             Joseph Myers  <joseph@codesourcery.com>
833
834         * config/arm/arm.c (arm_builtin_va_list): New function.
835         (arm_expand_builtin_va_start): Likewise.
836         (arm_gimplify_va_arg_expr): Likewise.
837         (TARGET_BUILD_BUILTIN_VA_LIST): Define.
838         (TARGET_BUILD_BUILTIN_VA_START): Likewise.
839         (TARGET_BUILD_BUILTIN_VA_ARG_EXPR): Likewise.
840         (va_list_type): New variable.
841         (arm_mangle_type): Mangle va_list_type appropriately.
842
843 2009-02-20  Jakub Jelinek  <jakub@redhat.com>
844
845         PR middle-end/39157
846         * Makefile.in (loop-invariant.o): Depend on $(PARAMS_H).
847         * params.h (LOOP_INVARIANT_MAX_BBS_IN_LOOP): Define.
848         * params.def (loop-invariant-max-bbs-in-loop): New parameter.
849         * opts.c (decode_options): Set loop-invariant-max-bbs-in-loop
850         parameter to 1000 for -O1 by default.
851         * doc/invoke.texi (loop-invariant-max-bbs-in-loop): Document new
852         parameter.
853         * loop-invariant.c: Include params.h.
854         (move_loop_invariants): Don't call move_single_loop_invariants on
855         very large loops.
856
857 2009-02-20  Jaka Mocnik  <jaka@xlab.si>
858
859         * calls.c (emit_library_call_value_1): Use slot_offset instead of
860         offset when calculating bounds for indexing stack_usage_map.  Fixes
861         a buffer overflow with certain target setups.
862
863 2009-02-20  Jakub Jelinek  <jakub@redhat.com>
864
865         PR target/39240
866         * calls.c (expand_call): Clear try_tail_call if caller and callee
867         disagree in promotion of function return value.
868
869 2009-02-19  Jakub Jelinek  <jakub@redhat.com>
870
871         PR target/39175
872         * c-common.c (c_determine_visibility): If visibility changed and
873         DECL_RTL has been already set, call make_decl_rtl to update symbol
874         flags.
875
876 2009-02-19  H.J. Lu  <hongjiu.lu@intel.com>
877
878         PR c++/39188
879         * varasm.c (assemble_variable): Don't check DECL_NAME when
880         globalizing a variable.
881
882 2009-02-19  Joseph Myers  <joseph@codesourcery.com>
883
884         PR c/38483
885         * builtins.c (gimplify_va_arg_expr): Evaluate the va_list
886         expression before any __builtin_trap call.
887         * c-typeck.c (build_function_call): Convert and check function
888         arguments before generating a call to a trap.  Evaluate the
889         function arguments before the trap.
890
891 2009-02-19  Uros Bizjak  <ubizjak@gmail.com>
892
893         PR target/39228
894         * config/i386/i386.md (isinfxf2): Split from isinf<mode>2.
895         (UNSPEC_FXAM_MEM): New unspec.
896         (fxam<mode>2_i387_with_temp): New insn and split pattern.
897         (isinf<mode>2): Use MODEF mode iterator.  Force operand[1] through
898         memory using fxam<mode>2_i387_with_temp to remove excess precision.
899
900 2009-02-19  Richard Guenther  <rguenther@suse.de>
901
902         PR tree-optimization/39207
903         PR tree-optimization/39074
904         * tree-ssa-structalias.c (storedanything_id, var_storedanything,
905         storedanything_tree): New.
906         (do_ds_constraint): Simplify ANYTHING shortcutting.  Update
907         the STOREDANYTHING solution if the lhs solution contains ANYTHING.
908         (build_succ_graph): Add edges from STOREDANYTHING to all
909         non-direct nodes.
910         (init_base_vars): Initialize STOREDANYTHING.
911         (compute_points_to_sets): Free substitution info after
912         building the succ graph.
913         (ipa_pta_execute): Likewise.
914
915         * tree-ssa-structalias.c (struct variable_info): Add may_have_pointers
916         field.
917         (do_ds_constraint): Do not add to special var or non-pointer
918         field solutions.
919         (type_could_have_pointers): Split out from ...
920         (could_have_pointers): ... here.  For arrays use the element type.
921         (create_variable_info_for): Initialize may_have_pointers.
922         (new_var_info): Likewise.
923         (handle_lhs_call): Make the HEAP variable unknown-sized.
924         (intra_create_variable_infos): Use a type with pointers for
925         PARM_NOALIAS, make it unknown-sized.
926
927 2009-02-18  H.J. Lu  <hongjiu.lu@intel.com>
928
929         PR target/39224
930         * config/i386/i386.c (ix86_return_in_memory): Properly check ABI.
931
932 2009-02-18  Jason Merrill  <jason@redhat.com>
933
934         PR target/39179
935         * tree-ssa-ccp.c (get_symbol_constant_value): Don't assume zero
936         value if DECL_EXTERNAL.
937         * tree-sra.c (sra_walk_gimple_assign): Likewise.
938         * target.h (gcc_target::binds_local_p): Clarify "module".
939         * tree.h (TREE_PUBLIC): Clarify "module".
940
941 2009-02-17  Xuepeng Guo  <xuepeng.guo@intel.com>
942
943         PR target/38891
944         * config/i386/i386.h (CONDITIONAL_REGISTER_USAGE): Move the hunk of
945         initialization for MS_ABI prior to the hunk of !TARGET_MMX.
946
947 2009-02-17  H.J. Lu  <hongjiu.lu@intel.com>
948
949         PR target/39082
950         * c.opt (Wabi): Support C and ObjC.
951         (Wpsabi): New.
952
953         * c-opts.c (c_common_handle_option): Handle OPT_Wabi.
954
955         * config/i386/i386.c (classify_argument): Warn once about the ABI
956         change when passing union with long double.
957
958         * doc/invoke.texi: Update -Wabi for warning psABI changes.
959
960 2009-02-18  Joseph Myers  <joseph@codesourcery.com>
961
962         PR c/35447
963         * c-parser.c (c_parser_compound_statement): Always enter and leave
964         a scope.
965
966 2009-02-17  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
967
968         PR target/34587
969         * config/darwin.h (SUPPORTS_INIT_PRIORITY): Define.
970
971 2009-02-18  Jakub Jelinek  <jakub@redhat.com>
972
973         PR tree-optimization/36922
974         * tree-data-ref.c (initialize_matrix_A): Handle BIT_NOT_EXPR.
975         * tree-scalar-evolution.c (interpret_rhs_expr, instantiate_scev_1):
976         Likewise.
977
978 2009-02-17  Richard Sandiford  <rdsandiford@googlemail.com>
979
980         * config/mips/mips.c (mips_override_options): Set flag_dwarf2_cfi_asm
981         to 0 for EABI64.
982
983 2009-02-17  Richard Sandiford  <rdsandiford@googlemail.com>
984
985         * config/mips/mips.md (type): Reclassify lui_movf as "unknown".
986
987 2009-02-17  Richard Sandiford  <rdsandiford@googlemail.com>
988
989         * config/mips/mips.c (mips_gimplify_va_arg_expr): Fix invalid
990         tree sharing.
991
992 2009-02-17  Ruan Beihong  <ruanbeihong@gmail.com>
993             Richard Sandiford  <rdsandiford@googlemail.com>
994
995         * config/mips/mips.c (CODE_FOR_loongson_biadd): Delete.
996         * config/mips/loongson.md (reduc_uplus_<mode>): Rename to...
997         (loongson_biadd): ...this.
998
999 2009-02-17  Richard Guenther  <rguenther@suse.de>
1000
1001         PR tree-optimization/39202
1002         * tree-ssa-structalias.c (do_structure_copy): Before collapsing
1003         a var make sure to follow existing collapses.
1004
1005 2009-02-17  Richard Guenther  <rguenther@suse.de>
1006
1007         PR middle-end/39214
1008         * langhooks.c (lhd_print_error_function): Check for NULL block.
1009
1010 2009-02-17  Richard Guenther  <rguenther@suse.de>
1011
1012         PR tree-optimization/39204
1013         * tree-ssa-pre.c (phi_translate_1): Lookup the value-number
1014         of the PHI arg.
1015
1016 2009-02-17  Uros Bizjak  <ubizjak@gmail.com>
1017
1018         * config/soft-fp/double.h: Update from glibc CVS.
1019
1020 2009-02-17  Richard Guenther  <rguenther@suse.de>
1021
1022         PR tree-optimization/39207
1023         * tree-ssa-structalias.c (find_what_p_points_to): Do not emit
1024         strict-aliasing warnings for pointers pointing to NULL.
1025
1026 2009-02-16  Joseph Myers  <joseph@codesourcery.com>
1027
1028         PR c/35446
1029         * c-parser.c (c_parser_braced_init): Call pop_init_level when
1030         skipping until next close brace.
1031
1032 2009-02-16  H.J. Lu  <hongjiu.lu@intel.com>
1033
1034         PR target/37049
1035         * config/i386/i386.c (ix86_expand_push): Set memory alignment
1036         to function argument boundary.
1037
1038 2009-02-16  Hariharan Sandanagobalane  <hariharan@picochip.com>
1039
1040         * config/picochip/picochip.md (lea_add): Allow any nonimmediate
1041         in the lea_add. Reload eventually constraints it properly.
1042         * config/picochip/constraints.md : Remove the target constraint
1043         "b", since it is not needed anymore.
1044
1045 2009-02-16  Jakub Jelinek  <jakub@redhat.com>
1046
1047         * gthr-dce.h: Uglify function parameter and local variable names.
1048         * gthr-gnat.h: Likewise.
1049         * gthr-mipssde.h: Likewise.
1050         * gthr-nks.h: Likewise.
1051         * gthr-posix95.h: Likewise.
1052         * gthr-posix.h: Likewise.
1053         * gthr-rtems.h: Likewise.
1054         * gthr-single.h: Likewise.
1055         * gthr-solaris.h: Likewise.
1056         * gthr-tpf.h: Likewise.
1057         * gthr-vxworks.h: Likewise.
1058         * gthr-win32.h: Likewise.
1059
1060 2009-02-15  H.J. Lu  <hongjiu.lu@intel.com>
1061
1062         PR target/39196
1063         * config/i386/i386.md: Restrict the new peephole2 to move
1064         between MMX/SSE registers.
1065
1066 2009-02-15  Richard Guenther  <rguenther@suse.de>
1067
1068         Revert
1069         2009-02-13  Richard Guenther  <rguenther@suse.de>
1070
1071         * configure.ac: Enable LFS.
1072         * configure: Re-generate.
1073         * config.in: Likewise.
1074
1075 2009-02-13  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
1076
1077         * config/spu/spu_internals.h (spu_sr, spu_sra, spu_srqw,
1078         spu_srqwbyte, spu_srqwbytebc): Define.
1079         * config/spu/spu-builtins.def (spu_sr, spu_sra, spu_srqw,
1080         spu_srqwbyte, spu_srqwbytebc): New overloaded builtins.
1081         * config/spu/spu.md ("shrqbybi_<mode>", "shrqbi_<mode>",
1082         "shrqby_<mode>"): New insn-and-split patterns.
1083         * config/spu/spu.c (expand_builtin_args): Determine and return
1084         number of operands using spu_builtin_description data.
1085         (spu_expand_builtin_1): Use it.
1086
1087 2009-02-13  Steve Ellcey  <sje@cup.hp.com>
1088
1089         PR target/38056
1090         * config/ia64/ia64.c (ia64_function_ok_for_sibcall): Check
1091         TARGET_CONST_GP.
1092
1093 2009-02-13  H.J. Lu  <hongjiu.lu@intel.com>
1094
1095         PR target/39149
1096         * config/i386/i386.c (override_options): Correct warning
1097         messages for -malign-loops, -malign-jumps and -malign-functions.
1098
1099 2009-02-13  H.J. Lu  <hongjiu.lu@intel.com>
1100
1101         PR target/39152
1102         * config/i386/i386.md: Restrict the new peephole2 to move
1103         between the general purpose registers.
1104
1105 2009-02-13  H.J. Lu  <hongjiu.lu@intel.com>
1106
1107         PR target/39162
1108         * config/i386/i386.c (type_natural_mode): Add a new argument.
1109         Return the original mode and warn ABI change if vector size is 32byte.
1110         (function_arg_advance): Updated.
1111         (function_arg): Likewise.
1112         (ix86_function_value): Likewise.
1113         (ix86_return_in_memory): Likewise.
1114         (ix86_sol10_return_in_memory): Likewise.
1115         (ix86_gimplify_va_arg): Likewise.
1116         (function_arg_32): Don't warn ABX ABI change here.
1117         (function_arg_64): Likewise.
1118
1119 2009-02-13  Bernd Schmidt  <bernd.schmidt@analog.com>
1120
1121         * loop-iv.c (implies_p): In the final case, test that operands 0
1122         of the two comparisons match.
1123
1124         * config/bfin/bfin.c (find_prev_insn_start): New function.
1125         (bfin_optimize_loop): Use it in some cases instead of PREV_INSN.
1126         (find_next_insn_start): Move.
1127
1128 2009-02-13  Richard Guenther  <rguenther@suse.de>
1129
1130         * configure.ac: Enable LFS.
1131         * configure: Re-generate.
1132         * config.in: Likewise.
1133
1134 2009-02-13  Joseph Myers  <joseph@codesourcery.com>
1135
1136         PR c/35444
1137         * c-parser.c (c_parser_parms_list_declarator): Discard pending
1138         sizes on syntax error after some arguments have been parsed.
1139
1140 2009-02-12  Jakub Jelinek  <jakub@redhat.com>
1141
1142         * doc/invoke.texi (-fira): Remove.
1143
1144 2009-02-12  H.J. Lu  <hongjiu.lu@intel.com>
1145
1146         * caller-save.c: Replace regclass.c with reginfo.c in comments.
1147         * recog.c: Likewise.
1148         * rtl.h: Likewise.
1149
1150 2009-02-12  Uros Bizjak  <ubizjak@gmail.com>
1151
1152         * longlong.h (sub_ddmmss): New for ia64. Ported from GMP 4.2.
1153         (umul_ppmm): Likewise.
1154         (count_leading_zeros): Likewise.
1155         (count_trailing_zeros): Likewise.
1156         (UMUL_TIME): Likewise.
1157
1158 2009-02-12  H.J. Lu  <hongjiu.lu@intel.com>
1159
1160         * config.gcc (ia64*-*-linux*): Add ia64/t-fprules-softfp and
1161         soft-fp/t-softfp to tmake_file.
1162
1163         * config/ia64/ia64.c (ia64_soft_fp_init_libfuncs): New.
1164         (ia64_expand_compare): Use HPUX library for TFmode only for HPUX.
1165         (ia64_builtins) [IA64_BUILTIN_COPYSIGNQ, IA64_BUILTIN_FABSQ,
1166         IA64_BUILTIN_INFQ]: New.
1167         (ia64_init_builtins): Initialize __builtin_infq,
1168         __builtin_fabsq and __builtin_copysignq if not HPUX.
1169         (ia64_expand_builtin): Handle IA64_BUILTIN_COPYSIGNQ,
1170         IA64_BUILTIN_FABSQ and IA64_BUILTIN_INFQ.
1171
1172         * config/ia64/lib1funcs.asm (__divtf3): Define only if
1173         SHARED is defined.
1174         (__fixtfti): Likewise.
1175         (__fixunstfti): Likewise.
1176         (__floattitf): Likewise.
1177
1178         * config/ia64/libgcc-glibc.ver: New.
1179         * config/ia64/t-fprules-softfp: Likewise.
1180         * config/ia64/sfp-machine.h: Likewise.
1181
1182         * config/ia64/linux.h (LIBGCC2_HAS_TF_MODE): New.
1183         (LIBGCC2_TF_CEXT): Likewise.
1184         (TF_SIZE): Likewise.
1185         (TARGET_INIT_LIBFUNCS): Likewise.
1186
1187         * config/ia64/t-glibc (SHLINB_MAPFILES):
1188         Add $(srcdir)/config/ia64/libgcc-glibc.ver.
1189
1190 2009-02-12  H.J. Lu  <hongjiu.lu@intel.com>
1191
1192         * config/i386/i386.c (construct_container): Rewrite processing
1193         BLKmode with X86_64_SSE_CLASS.
1194
1195 2009-02-12  Paolo Bonzini  <bonzini@gnu.org>
1196
1197         PR target/39152
1198         * config/i386/i386.md: Replace simplify_replace_rtx with
1199         replace_rtx in the new peephole2.
1200
1201 2009-02-12  Nathan Sidwell  <nathan@codesourcery.com>
1202
1203         * doc/invoke.texi (Optimize Options): Stop claiming inlining and
1204         loop unrolling do not happen at -O2.
1205
1206 2009-02-12  Michael Matz  <matz@suse.de>
1207
1208         * gcc.c (ASM_DEBUG_SPEC): Check for -g0.
1209
1210 2009-02-12  Jakub Jelinek  <jakub@redhat.com>
1211
1212         * dwarf2out.c (dwarf2out_finish): Force output of comp_unit_die
1213         for -g3.
1214
1215 2009-02-12  Ben Elliston  <bje@au.ibm.com>
1216
1217         * config/rs6000/rs6000.md (allocate_stack): Use _stack form of
1218         patterns when updating the back chain.  Missed in the 2009-02-10
1219         change.
1220
1221 2009-02-11  Janis Johnson  <janis187@us.ibm.com>
1222
1223         * doc/extend.texi (Decimal Floating Types): Update identifier of
1224         draft TR and list of missing support.
1225
1226 2009-02-11  Jakub Jelinek  <jakub@redhat.com>
1227
1228         PR middle-end/39154
1229         * gimplify.c (omp_notice_variable): If adding GOVD_SEEN
1230         bit to variable length decl's flags, add it also to its
1231         pointer replacement variable.
1232
1233 2009-02-11  Uros Bizjak  <ubizjak@gmail.com>
1234             Jakub Jelinek  <jakub@redhat.com>
1235
1236         PR target/39118
1237         * config/i386/i386.md (UNSPEC_MEMORY_BLOCKAGE): New constant.
1238         (memory_blockage): New expander.
1239         (*memory_blockage): New insn pattern.
1240         * config/i386/i386.c (ix86_expand_prologue): Use memory_blockage
1241         instead of general blockage at the end of function prologue when
1242         frame pointer is used to access red zone area.  Do not emit blockage
1243         when profiling, it is emitted in generic code.
1244         (ix86_expand_epilogue): Emit memory_blockage at the beginning of
1245         function epilogue when frame pointer is used to access red zone area.
1246
1247 2009-02-11  Paolo Bonzini  <bonzini@gnu.org>
1248
1249         PR target/38824
1250         * config/i386/i386.md: Add two new peephole2 to avoid mov followed
1251         by arithmetic with memory operands.
1252         * config/i386/predicates.md (commutative_operator): New.
1253
1254 2009-02-10  Janis Johnson  <janis187@us.ibm.com>
1255
1256         * doc/extend.texi (Fixed-Point Types): Break long paragraphs into
1257         bulleted lists.
1258
1259 2009-02-10  Eric Botcazou  <ebotcazou@adacore.com>
1260
1261         * alias.h (record_alias_subset): Declare.
1262         * alias.c (record_alias_subset): Make global.
1263
1264 2009-02-10  Nick Clifton  <nickc@redhat.com>
1265
1266         * tree-parloops.c: Change license to GPLv3.
1267         * ipa-struct-reorg.c: Change license to GPLv3.
1268         * ipa-struct-reorg.h: Change license to GPLv3.
1269
1270 2009-02-10  Steve Ellcey  <sje@cup.hp.com>
1271
1272         PR c/39084
1273         * c-decl.c (start_struct): Return NULL on error.
1274
1275 2009-02-10  Jakub Jelinek  <jakub@redhat.com>
1276
1277         PR middle-end/39124
1278         * cfgloopmanip.c (remove_path): Call remove_bbs after
1279         cancel_loop_tree, not before it.
1280
1281         PR target/39139
1282         * function.h (struct function): Add has_local_explicit_reg_vars bit.
1283         * gimplify.c (gimplify_bind_expr): Set it if local DECL_HARD_REGISTER
1284         VAR_DECLs were seen.
1285         * tree-ssa-live.c (remove_unused_locals): Recompute
1286         cfun->has_local_explicit_reg_vars.
1287         * tree-ssa-sink.c (statement_sink_location): Don't sink BLKmode
1288         copies or clearings if cfun->has_local_explicit_reg_vars.
1289
1290 2009-02-10  Uros Bizjak  <ubizjak@gmail.com>
1291
1292         PR target/39118
1293         * config/i386/i386.c (expand_prologue): Emit blockage at the end
1294         of function prologue when frame pointer is used to access
1295         red zone area.
1296
1297 2009-02-10  Richard Guenther  <rguenther@suse.de>
1298
1299         PR middle-end/39127
1300         * gimplify.c (gimple_regimplify_operands): Always look if
1301         we need to create a temporary.
1302
1303 2009-02-10  Richard Guenther  <rguenther@suse.de>
1304
1305         PR tree-optimization/39132
1306         * tree-loop-distribution.c (todo): New global var.
1307         (generate_memset_zero): Trigger TODO_rebuild_alias.
1308         (tree_loop_distribution): Return todo.
1309
1310 2009-02-10  H.J. Lu  <hongjiu.lu@intel.com>
1311
1312         PR target/39119
1313         * config/i386/i386.c (x86_64_reg_class): Remove X86_64_AVX_CLASS.
1314         (x86_64_reg_class_name): Removed.
1315         (classify_argument): Return 0 if bytes > 32.  Return 0 if the
1316         first one isn't X86_64_SSE_CLASS or any other ones aren't
1317         X86_64_SSEUP_CLASS when size > 16bytes.  Don't turn
1318         X86_64_SSEUP_CLASS into X86_64_SSE_CLASS if the preceded one
1319         is X86_64_SSEUP_CLASS.  Set AVX modes to 1 X86_64_SSE_CLASS
1320         and 3 X86_64_SSEUP_CLASS.
1321         (construct_container): Remove X86_64_AVX_CLASS.  Handle 4
1322         registers with 1 X86_64_SSE_CLASS and 3 X86_64_SSEUP_CLASS.
1323
1324 2009-02-10  Ben Elliston  <bje@au.ibm.com>
1325
1326         * config/rs6000/rs6000.md (allocate_stack): Always use an update
1327         form instruction to update the stack back chain word, even if the
1328         user has disabled the generation of update instructions.
1329         (movdi_<mode>_update_stack): New.
1330         (movsi_update_stack): Likewise.
1331         * config/rs6000/rs6000.c (rs6000_emit_allocate_stack): Likewise,
1332         always use an update form instruction to update the stack back
1333         chain word.
1334
1335 2009-02-09  Sebastian Pop  <sebastian.pop@amd.com>
1336
1337         PR middle-end/38953
1338         * graphite.c (if_region_set_false_region): After moving a region in
1339         the false branch of a condition, remove the empty dummy basic block.
1340         (gloog): Remove wrong fix for PR38953.
1341
1342 2009-02-09  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
1343
1344         * config/spu/spu.c (array_to_constant): Fix (latent) wrong-code
1345         generation due to implicit sign extension.
1346
1347 2009-02-09  Eric Botcazou  <ebotcazou@adacore.com>
1348
1349         PR middle-end/38981
1350         * tree-ssa-coalesce.c (add_coalesce): Cap the costs of coalesce pairs
1351         at MUST_COALESCE_COST-1 instead of MUST_COALESCE_COST.
1352
1353 2009-02-09  Richard Guenther  <rguenther@suse.de>
1354
1355         PR middle-end/35202
1356         * convert.c (convert_to_real): Disable (float)fn((double)x)
1357         to fnf(x) conversion if errno differences may occur and
1358         -fmath-errno is set.
1359
1360 2009-02-07  Anatoly Sokolov  <aesok@post.ru>
1361
1362         * config/avr/avr.c (avr_mcu_t): Add ata6289 device.
1363         * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): (Ditto.).
1364         * config/avr/t-avr (MULTILIB_MATCHES): (Ditto.).
1365
1366 2009-02-06  Joseph Myers  <joseph@codesourcery.com>
1367
1368         PR c/35434
1369         * c-common.c (handle_alias_attribute): Disallow attribute for
1370         anything not a FUNCTION_DECL or VAR_DECL.
1371
1372 2009-02-06  Janis Johnson  <janis187@us.ibm.com>
1373
1374         PR c/39035
1375         * real.c (do_compare): Special-case compare of zero against
1376         decimal float value.
1377
1378 2009-02-06  Joseph Myers  <joseph@codesourcery.com>
1379
1380         PR c/36432
1381         * c-decl.c (grokdeclarator): Don't treat [] declarators in fields
1382         as indicating flexible array members unless the field itself is
1383         being declarared as the incomplete array.
1384
1385 2009-02-06  Jan Hubicka  <jh@suse.cz>
1386
1387         PR tree-optimization/38844
1388         * ipa-inline.c (try_inline): Stop inlining recursion when edge
1389         is already inlined.
1390
1391 2009-02-06  Richard Guenther  <rguenther@suse.de>
1392
1393         PR middle-end/38977
1394         * tree-cfg.c (need_fake_edge_p): Force a fake edge for
1395         fork because we may expand it as __gcov_fork.
1396
1397 2009-02-06  Nick Clifton  <nickc@redhat.com>
1398
1399         * config/m32c/m32c.h (PCC_BITFIELD_TYPE_MATTERS): Define to zero.
1400
1401 2009-02-06  Paolo Bonzini  <bonzini@gnu.org>
1402
1403         PR tree-optimization/35659
1404         * tree-ssa-sccvn.c (vn_constant_eq, vn_reference_eq, vn_nary_op_eq
1405         vn_phi_eq): Shortcut if hashcode does not match.
1406         (vn_reference_op_compute_hash): Do not call iterative_hash_expr for
1407         NULL operands.
1408         * tree-ssa-pre.c (pre_expr_hash): Look at hashcode if available,
1409         and avoid iterative_hash_expr.
1410         (FOR_EACH_VALUE_ID_IN_SET): New.
1411         (value_id_compare): Remove.
1412         (sorted_array_from_bitmap_set): Use FOR_EACH_VALUE_ID_IN_SET to
1413         sort expressions by value id.
1414
1415 2009-02-05  Kaz Kojima  <kkojima@gcc.gnu.org>
1416
1417         PR target/38991
1418         * config/sh/predicates.md (general_movsrc_operand): Don't check
1419         the subreg of system registers here.
1420
1421 2009-02-05  Jakub Jelinek  <jakub@redhat.com>
1422
1423         PR c++/39106
1424         * cgraphunit.c (cgraph_function_versioning): Clear also DECL_VIRTUAL_P
1425         on the copied decl.
1426
1427 2009-02-05  Paolo Bonzini  <bonzini@gnu.org>
1428
1429         PR rtl-optimization/39110
1430         * rtlanal.c (rtx_addr_can_trap_p_1): Shortcut unaligned
1431         addresses, not aligned ones.
1432
1433 2009-02-05  Daniel Berlin  <dberlin@dberlin.org>
1434             Richard Guenther  <rguenther@suse.de>
1435
1436         PR tree-optimization/39100
1437         * tree-ssa-structalias.c (do_ds_constraint): Actually do what the
1438         comment says and add edges.
1439
1440 2009-02-05  Joseph Myers  <joseph@codesourcery.com>
1441
1442         PR c/35435
1443         * c-common.c (handle_tls_model_attribute): Ignore attribute for
1444         non-VAR_DECLs without checking DECL_THREAD_LOCAL_P.
1445
1446 2009-02-04  Tobias Grosser  <grosser@fim.uni-passau.de> 
1447
1448         * graphite.c (bb_in_sese_p, sese_build_livein_liveouts_use,
1449         sese_build_livein_liveouts_bb, sese_build_livein_liveouts,
1450         register_bb_in_sese, new_sese, free_sese): Moved.
1451         (dot_scop_1, build_scop_loop_nests, build_loop_iteration_domains,
1452         outermost_loop_in_scop, build_scop_iteration_domain,
1453         expand_scalar_variables_ssa_name, get_vdef_before_scop,
1454         limit_scops): Use bb_in_sese_p instead of bb_in_scop_p.
1455         Use loop_in_sese_p instead of loop_in_scop_p.
1456         (new_graphite_bb, gloog): Do not initialize SCOP_BBS_B.
1457         (new_scop, free_scop): Remove SCOP_LOOP2CLOOG_LOOP and SCOP_BBS_B.
1458         (scopdet_basic_block_info): Fix bug in scop detection.
1459         (new_loop_to_cloog_loop_str, hash_loop_to_cloog_loop,
1460         eq_loop_to_cloog_loop): Remove.
1461         (nb_loops_around_loop_in_scop, nb_loop
1462         ref_nb_loops): Moved here...
1463         * graphite.h (ref_nb_loops): ... from here.
1464         (struct scop): Remove bbs_b bitmap and loop2cloog_loop.
1465         (loop_domain_dim, loop_iteration_vector_dim): Remove.
1466         (SCOP_BBS_B, bb_in_scop_p, loop_in_scop_p): Removed.
1467         * testsuite/gcc.dg/graphite/scop-19.c: New
1468
1469 2009-02-04  Paolo Bonzini  <bonzini@gnu.org>
1470             Hans-Peter Nilsson  <hp@axis.com>
1471
1472         PR rtl-optimization/37889
1473         * rtlanal.c (rtx_addr_can_trap_p_1): Add offset and size arguments.
1474         Move offset handling from PLUS to before the switch.  Use new
1475         arguments when considering SYMBOL_REFs too.
1476         (rtx_addr_can_trap_p): Pass dummy offset and size.
1477         (enum may_trap_p_flags): Remove.
1478         (may_trap_p_1): Pass size from MEM_SIZE.
1479
1480         PR rtl-optimization/38921
1481         * loop-invariant.c (find_invariant_insn): Use may_trap_or_fault_p.
1482         * rtl.h (may_trap_after_code_motion_p): Delete prototype.
1483         * rtlanal.c (may_trap_after_code_motion_p): Delete.
1484         (may_trap_p, may_trap_or_fault_p): Pass 0/1 as flags.
1485
1486 2009-02-04  H.J. Lu  <hongjiu.lu@intel.com>
1487
1488         AVX Programming Reference (January, 2009)
1489         * config/i386/sse.md (*vpclmulqdq): New.
1490
1491 2009-02-04  Jakub Jelinek  <jakub@redhat.com>
1492
1493         PR tree-optimization/38977
1494         PR gcov-profile/38292
1495         * calls.c (special_function_p): Disregard __builtin_ prefix.
1496
1497 2009-02-04  Hariharan Sandanagobalane  <hariharan@picochip.com>
1498
1499         * config/picochip/picochip.c (GO_IF_LEGITIMATE_ADDRESS): Disallow
1500         non-indexable addresses even before reload.
1501
1502 2009-02-03  Joseph Myers  <joseph@codesourcery.com>
1503
1504         PR c/29129
1505         * c-decl.c (grokdeclarator): Mark [*] arrays in field declarators
1506         as having variable size.  Do not give an error for unnamed
1507         parameters with [*] declarators.  Give a warning for type names
1508         with [*] declarators and mark them as variable size.
1509         * c-parser.c (c_parser_sizeof_expression): Do not give an error
1510         for sizeof applied to [*] type names.
1511
1512 2009-02-03  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1513
1514         PR C++/36607
1515         * convert.c (convert_to_integer): Treat OFFSET_TYPE like INTEGER_TYPE.
1516
1517 2009-02-03  Jakub Jelinek  <jakub@redhat.com>
1518
1519         * gcc.c (process_command): Update copyright notice dates.
1520         * gcov.c (print_version): Likewise.
1521         * gcov-dump.c (print_version): Likewise.
1522         * mips-tfile.c (main): Likewise.
1523         * mips-tdump.c (main): Likewise.
1524
1525 2009-02-03  Joseph Myers  <joseph@codesourcery.com>
1526
1527         PR c/35433
1528         * c-typeck.c (composite_type): Set TYPE_SIZE and TYPE_SIZE_UNIT
1529         for composite type involving a zero-length array type.
1530
1531 2009-02-03  Jakub Jelinek  <jakub@redhat.com>
1532
1533         PR target/35318
1534         * function.c (match_asm_constraints_1): Skip over
1535         initial optional % in the constraint.
1536
1537         PR inline-asm/39059
1538         * c-parser.c (c_parser_postfix_expression): If fixed point is not
1539         supported, don't accept FIXED_CSTs.
1540         * c-decl.c (finish_declspecs): Error if fixed point is not supported
1541         and _Sat is used without _Fract/_Accum.  Set specs->type to
1542         integer_type_node for cts_fract/cts_accum if fixed point is not
1543         supported.
1544
1545 2009-02-02  Catherine Moore  <clm@codesourcery.com>
1546
1547         * sde.h (SUBTARGET_ARM_SPEC): Don't assemble -fpic code as -mabicalls.
1548
1549 2009-02-02  Richard Sandiford  <rdsandiford@googlemail.com>
1550
1551         * config/mips/mips.h (FILE_HAS_64BIT_SYMBOLS): New macro.
1552         (ABI_HAS_64BIT_SYMBOLS): Use it.
1553         (DWARF2_ADDR_SIZE): Use it instead of ABI_HAS_64BIT_SYMBOLS.
1554
1555 2009-02-02  Paul Brook  <paul@codesourcery.com>
1556
1557         * config/arm/arm.md (arm_addsi3): Add r/r/k alternative.
1558
1559 2009-02-02  Jakub Jelinek  <jakub@redhat.com>
1560
1561         PR inline-asm/39058
1562         * recog.h (asm_operand_ok): Add constraints argument.
1563         * recog.c (asm_operand_ok): Likewise.  If it is set, for digits
1564         recurse on matching constraint.
1565         (check_asm_operands): Pass constraints as 3rd argument to
1566         asm_operand_ok.  Don't look up matching constraint here.
1567         * stmt.c (expand_asm_operands): Pass NULL as 3rd argument
1568         to asm_operand_ok.
1569
1570 2009-02-02  Ben Elliston  <bje@au.ibm.com>
1571
1572         * doc/tm.texi (Storage Layout): Fix TARGET_ALIGN_ANON_BITFIELD and
1573         TARGET_NARROW_VOLATILE_BITFIELD macro names.
1574
1575 2009-01-31  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1576
1577         * doc/install.texi (hppa*-hp-hpux*): Update binutils and linker
1578         information.  Remove some obsolete information.  Reorganize.
1579
1580         * config/pa/fptr.c: Revert license to GPL 2.
1581         * config/pa/milli64.S: Likewise.
1582
1583 2009-01-31  Dave Korn  <dave.korn.cygwin@gmail.com>
1584
1585         PR target/38904
1586         * mkmap-flat.awk (END):  Use pe_dll command-line arg to pass
1587         LIBRARY name in, instead of hard-coding it.
1588         * config.gcc (i[34567]86-*-pe | i[34567]86-*-cygwin*):  Add an
1589         extra target make frag to tmake_files according to EH model.
1590         (i[34567]86-*-mingw* | x86_64-*-mingw*):  Likewise.
1591         * config/i386/t-dw2-eh, config/i386/t-sjlj-eh:  Add new target
1592         frags that define makefile variable EH_MODEL appropriately.
1593         * config/i386/cygming.h (DWARF2_UNWIND_INFO):  Add comment.
1594         * config/i386/cygwin.h (LIBGCC_EH_EXTN):  Define to nothing or
1595         to "-sjlj" according to type of EH configured.
1596         (LIBGCC_SONAME):  Concatenate it to shared library base name.
1597         * config/i386/mingw32.h (LIBGCC_EH_EXTN):  Define to "_dw2" or
1598         to "_sjlj" according to type of EH configured.
1599         (LIBGCC_SONAME):  Concatenate it to shared library base name.
1600         * config/i386/t-cygming (SHLIB_SONAME):  Use EH_MODEL.
1601         (SHLIB_LINK):  Add missing semicolon to if-else construct.
1602         (SHLIB_MKMAP_OPTS):  Pass library name to mkmap-flat.awk as
1603         string value of "pe_dll" command-line option.
1604         * config/i386/t-cygwin (SHLIB_EH_EXTENSION):  New helper.
1605         (SHLIB_SONAME):  Use it when overriding t-cygming default.
1606         (SHLIB_IMPLIB):  Override t-cygming default.
1607         (SHLIB_MKMAP_OPTS):  Pass library name to mkmap-flat.awk as
1608         string value of "pe_dll" command-line option.
1609
1610 2009-01-31  Dave Korn  <dave.korn.cygwin@gmail.com>
1611
1612         PR target/38952
1613         * config/i386/i386.c (ix86_builtin_setjmp_frame_value): New.
1614         (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Override default to point at it.
1615
1616 2009-01-31  Richard Guenther  <rguenther@suse.de>
1617
1618         PR tree-optimization/38937
1619         * tree-ssa-structalias.c (do_sd_constraint): Do not shortcut
1620         computing the transitive closure.
1621
1622 2009-01-30  Richard Guenther  <rguenther@suse.de>
1623
1624         PR tree-optimization/39041
1625         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1):
1626         Propagate variable indices only if the types match for this stmt.
1627
1628 2009-01-30  Jakub Jelinek  <jakub@redhat.com>
1629
1630         PR target/39013
1631         * c-decl.c (pop_scope): Set DECL_EXTERNAL for functions declared
1632         inline but never defined.
1633
1634 2009-01-30  Wolfgang Gellerich  <gellerich@de.ibm.com>
1635
1636         * config/s390/s390.md (*insv<mode>_reg_extimm): Removed.
1637         (*insv_h_di_reg_extimm): New insn.
1638         (*insv_l<mode>_reg_extimm): New insn.
1639
1640 2009-01-30  Hariharan Sandanagobalane  <hariharan@picochip.com>
1641
1642         * config/picochip/picochip.c (flag_conserve_stack): set
1643         PARAM_LARGE_STACK_FRAME and PARAM_STACK_FRAME_GROWTH to zero under
1644         fconserve-stack. Reduce call-overhead used by inliner.
1645
1646 2009-01-30  Hariharan Sandanagobalane  <hariharan@picochip.com>
1647
1648         PR/38157
1649         * common.opt (flag_conserve_stack): Initialised to zero.
1650
1651 2009-01-30  Kai Tietz  <kai.tietz@onevision.com>
1652
1653         PR/39002
1654         * config/i386/i386.c (ix86_can_use_return_insn_p): Check for nsseregs.
1655         (ix86_expand_epilogue): Take nsseregs in account to use proper restore
1656         method.
1657
1658 2009-01-29  H.J. Lu  <hongjiu.lu@intel.com>
1659
1660         * ira-color.c (allocno_reload_assign): Update comments.
1661         * regmove.c (regmove_optimize): Likewise.
1662
1663         * ra.h: Removed.
1664
1665 2009-01-29  Robert Millan  <rmh@aybabtu.com>
1666
1667         * gcc/config.gcc: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
1668         * gcc/config/i386/kopensolaris-gnu.h: New file.  Undefine
1669         `MD_UNWIND_SUPPORT'.
1670         * gcc/config/kopensolaris-gnu.h: New file (based on kfreebsd-gnu.h).
1671
1672 2009-01-29  Kazu Hirata  <kazu@codesourcery.com>
1673
1674         PR tree-optimization/39007
1675         * tree-loop-distribution.c (generate_builtin): Use
1676         recompute_dominator to compute the immediate dominator of the
1677         basic block just after the loop.
1678
1679 2009-01-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1680
1681         * config/i386/sol2-10.h [!HAVE_AS_IX86_DIFF_SECT_DELTA]
1682         (ASM_OUTPUT_DWARF_PCREL): Define.
1683
1684 2009-01-29  Vladimir Makarov  <vmakarov@redhat.com>
1685
1686         * doc/tm.texi (TARGET_IRA_COVER_CLASSES): Modify description.
1687         * doc/passes.texi: Remove entries about regclass, local-alloc, and
1688         global.  Modify entries about regmove and IRA.
1689
1690         * ra-conflict.c: Remove the file.
1691
1692         * reload.c (push_reload, find_dummy_reload): Remove flag_ira.
1693
1694         * tree-pass.h (pass_local_alloc, pass_global_alloc): Remove.
1695         (pass_regclass_init): Rename to pass_reginfo_init.
1696
1697         * cfgloopanal.c (estimate_reg_pressure_cost): Remove flag_ira.
1698
1699         * toplev.h (flag_ira): Remove.
1700
1701         * caller-save.c (setup_save_areas): Remove flag_ira.
1702
1703         * ira-color.c (ira_reuse_stack_slot, ira_mark_new_stack_slot): Ditto.
1704
1705         * global.c: Remove the file.
1706
1707         * opts.c: (decode_options): Remove flag_ira.
1708
1709         * hard-reg-set.h (losing_caller_save_reg_set): Remove.
1710
1711         * regmove.c: Modify file description.
1712         (find_use_as_address, try_auto_increment): Define them only if
1713         AUTO_INC_DEC is defined.
1714         (replacement_quality, replace_in_call_usage, fixup_match_1,
1715         stable_and_no_regs_but_for_p): Remove.
1716         (reg_set_in_bb): Make it static.
1717         (regmove_optimize): Remove flag_ira and code which worked for
1718         !flag_ira.
1719
1720         * local-alloc.c: Remove the file.
1721
1722         * common.opt (fira): Remove.
1723
1724         * ira.c: Include except.h.
1725         (eliminable_regset): Move from global.c.
1726         (mark_elimination): Ditto.  Remove flag_ira.
1727         (reg_renumber, struct equivalence, reg_equiv, equiv_mem,
1728         equiv_mem_modified, validate_equiv_mem_from_store,
1729         validate_equiv_mem, equiv_init_varies_p, equiv_init_movable_p,
1730         contains_replace_regs, memref_referenced_p, memref_used_between_p,
1731         no_equiv, recorded_label_ref): Move from local-alloc.c.
1732         (update_equiv_regs): Ditto.  Make it static.
1733         (print_insn_chain, print_insn_chains): Move it from global.c.
1734         (pseudo_for_reload_consideration_p): Ditto.  Remove flag_ira.
1735         (build_insn_chain): Ditto.  Make it static.
1736         (ra_init_live_subregs): Move from ra-conflict.c.  Make it static.
1737         Rename to init_live_subregs.
1738         (gate_ira): Remove flag_ira.
1739
1740         * regclass.c: Rename reginfo.c.  Change file description.
1741         (FORBIDDEN_INC_DEC_CLASSES): Remove.
1742         (reg_class_superclasses, forbidden_inc_dec_class, in_inc_dec): Remove.
1743         (init_reg_sets_1): Remove code for evaluation of
1744         reg_class_superclasses and losing_caller_save_reg_set.
1745         (init_regs): Remove init_reg_autoinc.
1746         (struct costs, costs, init_cost, ok_for_index_p_nonstrict,
1747         ok_for_base_p_nonstrict): Remove.
1748         (regclass_init): Rename to reginfo_init.  Don't initialize init_cost.
1749         (pass_regclass_init): Rename to pass_reginfo_init.  Modify
1750         corresponding entries.
1751         (dump_regclass, record_operand_costs, scan_one_insn,
1752         init_reg_autoinc, regclass, record_reg_classes, copy_cost,
1753         record_address_regs, auto_inc_dec_reg_p): Remove.
1754         (gt-regclass.h): Rename to gt-reginfo.h.
1755
1756         * rtl.h (dump_global_regs, retry_global_alloc,
1757         build_insn_chain, dump_local_alloc, update_equiv_regs): Remove.
1758
1759         * Makefile.in (RA_H): Remove.
1760         (OBJS-common): Remove global.o, local-alloc.o, and ra-conflict.o.
1761         Rename regclass.o to reginfo.o.
1762         (regclass.o): Rename to reginfo.o.  Rename gt-regclass.h to
1763         gt-reginfo.h.
1764         (global.o, local-alloc.o, ra-conflict.o): Remove entries.
1765         (GTFILES): Rename regclass.c to reginfo.c.
1766
1767         * passes.c (init_optimization_passes): Remove pass_local_alloc and
1768         pass_global_alloc.  Rename pass_regclass_init to pass_reginfo_init.
1769
1770         * reload1.c (compute_use_by_pseudos, reload, count_pseudo,
1771         count_spilled_pseudo, find_reg, alter_reg, delete_output_reload):
1772         Remove flag_ira.
1773         (finish_spills): Ditto.  Remove code for !flag_ira.
1774         
1775 2009-01-29  Kenneth Zadeck  <zadeck@naturalbridge.com>
1776
1777         PR middle-end/35854
1778         * doc/invoke.texi (rtl debug options): Complete rewrite.
1779         * auto-inc-dec.c (pass_inc_dec): Rename pass from "auto-inc-dec"
1780         to auto_inc_dec".
1781         * mode-switching.c (pass_mode_switching): Rename pass from
1782         "mode-sw" to "mode_sw".
1783         * except.c (pass_convert_to_eh_ranges): Rename pass from
1784         "eh-ranges" to "eh_ranges".
1785         * lower-subreg.c (pass_lower_subreg): Renamed pass from "subreg"
1786         to "subreg1".
1787                 
1788         
1789 2009-01-29  Andrey Belevantsev  <abel@ispras.ru>
1790             Alexander Monakov  <amonakov@ispras.ru>
1791
1792         PR middle-end/38857
1793         * sel-sched.c (count_occurrences_1): Check that *cur_rtx is a hard
1794         register.
1795         (move_exprs_to_boundary): Change return type and pass through
1796         should_move from move_op.  Relax assert.  Update usage ...
1797         (schedule_expr_on_boundary): ... here.  Use should_move instead of
1798         cant_move.
1799         (move_op_orig_expr_found): Indicate that insn was disconnected from
1800         stream.
1801         (code_motion_process_successors): Do not call after_merge_succs
1802         callback if original expression was not found when traversing any of
1803         the branches.
1804         (code_motion_path_driver): Change return type.  Update prototype.
1805         (move_op): Update comment.  Add a new parameter (should_move).  Update
1806         prototype.  Set *should_move based on indication provided by
1807         move_op_orig_expr_found.
1808
1809 2009-01-28  Pat Haugen  <pthaugen@us.ibm.com>
1810
1811         * doc/invoke.texi (avoid-indexed-addresses): Document new option.
1812         * config/rs6000/rs6000-protos.h (avoiding_indexed_address_p): Declare.
1813         * config/rs6000/rs6000.opt (avoid-indexed-addresses): New option.
1814         * config/rs6000/rs6000.c (rs6000_override_options): Default
1815         avoid-indexed-addresses on for Power6, off for everything else.
1816         (avoiding_indexed_address_p): New function.
1817         (rs6000_legitimize_address): Use it.
1818         (rs6000_legitimate_address): Likewise.
1819         * config/rs6000/rs6000.md (movXX_updateX): Likewise
1820
1821 2009-01-28  Kazu Hirata  <kazu@codesourcery.com>
1822
1823         PR tree-optimization/38997
1824         * tree-loop-distribution.c (generate_memset_zero): Use
1825         POINTER_PLUS_EXPR for a pointer addition.
1826
1827 2009-01-28  Andreas Krebbel  <krebbel1@de.ibm.com>
1828
1829         * config/s390/s390.md (bswap<mode>2): New pattern added.
1830
1831 2009-01-28  Wolfgang Gellerich  <gellerich@de.ibm.com>
1832
1833         * config/s390/s390.md (*tls_load_31): Added type attribute.
1834
1835 2009-01-28  Wolfgang Gellerich  <gellerich@de.ibm.com>
1836
1837         * config/s390/s390.md: Fix a few comments.
1838
1839 2009-01-28  Wolfgang Gellerich  <gellerich@de.ibm.com>
1840
1841         * config/s390/s390.md (*tmsi_reg): Fixed z10prop attribute.
1842         (*tm<mode>_full): Fixed z10prop attribute.
1843         (*tst<mode>_extimm): Fixed z10prop attribute.
1844         (*tst<mode>_cconly_extimm): Fixed z10prop attribute.
1845         (*tstqiCCT_cconly): Fixed z10prop attribute.
1846         (*cmpsi_ccu_zerohi_rlsi): Fixed z10prop attribute.
1847         (*movsi_larl): Fixed z10prop attribute.
1848         (*movsi_zarch): Fixed z10prop attribute.
1849         (*movsi_eas): Fixed z10prop attribute.
1850         (*movhi): Fixed z10prop attribute.
1851         (*movqi): Fixed z10prop attribute.
1852         (*movstrictqi): Fixed z10prop attribute.
1853         (*mov<mode>): Fixed z10prop attribute.
1854         (*movcc): Fixed z10prop attribute.
1855         (*sethighpartdi_64): Fixed z10prop attribute.
1856         (*zero_extendhi<mode>2_z10): Fixed z10prop attribute.
1857         (*negdi2_sign_cc): Fixed z10prop attribute.
1858         (*negdi2_sign): Fixed z10prop attribute.
1859         (*absdi2_sign_cc): Fixed z10prop attribute.
1860         (*absdi2_sign): Fixed z10prop attribute.
1861         (*negabsdi2_sign_cc): Fixed z10prop attribute.
1862         (*negabsdi2_sign): Fixed z10prop attribute.
1863         (*cmp_and_trap_signed_int<mode>): Fixed z10prop attribute.
1864         (*cmp_and_trap_unsigned_int<mode>): Fixed z10prop attribute.
1865         (doloop_si64): Fixed z10prop attribute.
1866         (doloop_si31): Fixed z10prop attribute.
1867         (doloop_long): Fixed z10prop attribute.
1868         (indirect_jump): Fixed z10prop attribute.
1869         (nop): Fixed z10prop attribute.
1870         (main_base_64): Fixed z10prop attribute.
1871         (reload_base_64): Fixed z10prop attribute.
1872
1873 2009-01-28  Jakub Jelinek  <jakub@redhat.com>
1874
1875         PR rtl-optimization/38740
1876         * reorg.c (gate_handle_delay_slots): Avoid dbr scheduling
1877         if !optimize.
1878         * config/mips/mips.c (mips_reorg): Likewise.
1879
1880 2009-01-28  Richard Guenther  <rguenther@suse.de>
1881
1882         PR tree-optimization/38926
1883         * tree-ssa-pre.c (add_to_value): Assert we add only expressions
1884         with the correct value id to a value.
1885         (do_regular_insertion): Use the value number of edoubleprime
1886         for the value number of the expr.
1887
1888         Revert
1889         2008-08-21  Richard Guenther  <rguenther@suse.de>
1890
1891         * tree-ssa-pre.c (insert_into_preds_of_block): Before inserting
1892         a PHI ask VN if it is already available.
1893         * tree-ssa-sccvn.h (vn_phi_lookup): Declare.
1894         * tree-ssa-sccvn.c (vn_phi_lookup): Export.
1895
1896 2009-01-28  Jakub Jelinek  <jakub@redhat.com>
1897
1898         PR middle-end/38934
1899         * tree-vrp.c (extract_range_from_assert): For LE_EXPR and LT_EXPR
1900         set to varying whenever max has TREE_OVERFLOW set, similarly
1901         for GE_EXPR and GT_EXPR and TREE_OVERFLOW min.
1902
1903 2009-01-28  Richard Guenther  <rguenther@suse.de>
1904
1905         PR middle-end/38908
1906         * tree-ssa.c (warn_uninitialized_var): Do not warn for seemingly
1907         uninitialized aggregate uses in call arguments.
1908
1909 2009-01-28  Paolo Bonzini  <bonzini@gnu.org>
1910
1911         PR tree-optimization/38984
1912         * tree-ssa-structalias.c (get_constraints_for_1): Do not use
1913         the nothing_id variable if -fno-delete-null-pointer-checks.
1914
1915 2009-01-28  Uros Bizjak  <ubizjak@gmail.com>
1916
1917         PR target/38988
1918         * config/i386/i386.md (set_rip_rex64): Wrap operand 1 in label_ref.
1919         (set_got_offset_rex64): Ditto.
1920
1921 2009-01-27  H.J. Lu  <hongjiu.lu@intel.com>
1922
1923         PR target/38941
1924         * doc/extend.texi: Improve local variable with asm reg.
1925
1926 2009-01-27  Adam Nemet  <anemet@caviumnetworks.com>
1927
1928         * c.opt (Wpacked-bitfield-compat): Change init value to -1.
1929         * c-opts.c (c_common_post_options): If -W*packed-bitfield-compat
1930         was not supplied then set warn_packed_bitfield_compat to the
1931         default value of 1.
1932         * stor-layout.c (place_field): Check warn_packed_bitfield_compat
1933         against 1.
1934
1935 2009-01-27  Richard Guenther  <rguenther@suse.de>
1936
1937         PR tree-optimization/38503
1938         * cfgexpand.c (expand_gimple_basic_block): Ignore
1939         GIMPLE_CHANGE_DYNAMIC_TYPE during expansion.
1940         * tree-ssa-structalias.c (set_uids_in_ptset): Do not prune
1941         variables that cannot have TBAA applied.
1942         (compute_points_to_sets): Do not remove GIMPLE_CHANGE_DYNAMIC_TYPE
1943         statements.
1944
1945 2009-01-27  Uros Bizjak  <ubizjak@gmail.com>
1946
1947         PR middle-end/38969
1948         * calls.c (initialize_argument_information): Do not wrap complex
1949         arguments in SAVE_EXPR.
1950
1951 2009-01-26  Andreas Tobler  <a.tobler@schweiz.org>
1952
1953         * config/t-vxworks (LIBGCC2_INCLUDES): Fix typo.
1954         (INSTALL_LIBGCC): Revert typo commit.
1955
1956 2009-01-26  Richard Guenther  <rguenther@suse.de>
1957
1958         PR tree-optimization/38745
1959         * tree-ssa-alias.c (update_alias_info_1): Exclude RESULT_DECL
1960         from special handling.
1961
1962 2009-01-26  Richard Guenther  <rguenther@suse.de>
1963
1964         PR tree-optimization/38745
1965         * tree-ssa.c (execute_update_addresses_taken): Do not include
1966         variables that cannot possibly be a register in not_reg_needs.
1967         Do not clear TREE_ADDRESSABLE on vars that may not become
1968         registers.
1969         * tree-ssa.c (update_alias_info_1): Include those in the set
1970         of addressable vars.
1971
1972 2009-01-26  Richard Guenther  <rguenther@suse.de>
1973
1974         PR middle-end/38851
1975         * Makefile.in (tree-ssa-dse.o): Add langhooks.h.
1976         * tree-ssa-dse.c: Include langhooks.h
1977         (execute_simple_dse): Remove stores with zero size.
1978
1979 2009-01-24  Jakub Jelinek  <jakub@redhat.com>
1980
1981         PR c/38957
1982         * c-typeck.c (c_finish_return): Handle POINTER_PLUS_EXPR the same way
1983         as PLUS_EXPR.
1984
1985 2009-01-24  Julian Brown  <julian@codesourcery.com>
1986
1987         * config/arm/t-linux-eabi (LIB2FUNCS_STATIC_EXTRA): Add
1988         config/arm/linux-atomic.c.
1989         * config/arm/linux-atomic.c: New.
1990
1991 2009-01-24  Eric Botcazou  <ebotcazou@adacore.com>
1992
1993         * config/sparc/linux.h (DBX_REGISTER_NUMBER): Delete.
1994         * config/sparc/linux64.h (DBX_REGISTER_NUMBER): Likewise.
1995         * config/sparc/sysv4.h (DBX_REGISTER_NUMBER): Likewise.
1996
1997 2009-01-24  H.J. Lu  <hongjiu.lu@intel.com>
1998
1999         PR c/38938
2000         * c-opts.c (c_common_handle_option): Update warn_pointer_sign
2001         properly.
2002
2003 2009-01-24  Sebastian Pop  <sebastian.pop@amd.com>
2004
2005         PR tree-optimization/38953
2006         * graphite.c (graphite_verify): Add a call to verify_loop_closed_ssa.
2007         (scop_adjust_phis_for_liveouts): Initialize false_i to zero.
2008         (gloog): Split the exit of the scop when the scop exit is a loop exit.
2009         (graphite_transform_loops): Only call cleanup_tree_cfg if gloog
2010         changed the CFG.
2011
2012 2009-01-24  Paul Brook  <paul@codesourcery.com>
2013
2014         * config/arm/neon.md (neon_type): Move to arm.md.
2015         (neon_mov<VSTRUCT>): Add neon_type attribute.
2016         * config/arm/arm.md (neon_type): Move to here.
2017         (conds): Add "unconditioal" and use as default for NEON insns.
2018
2019 2009-01-24  Ben Elliston  <bje@au.ibm.com>
2020
2021         * bitmap.h (BITMAP_FREE): Eliminate `implicit conversion from
2022         void *' warning from -Wc++-compat.
2023         * Makefile.in (dominance.o-warn): Remove.
2024
2025 2009-01-23  Paolo Bonzini  <bonzini@gnu.org>
2026
2027         PR tree-optimization/38932
2028         * fold-const.c (fold_unary_ignore_overflow): New.
2029         * tree.h (fold_unary_ignore_overflow): Declare.
2030         * tree-ssa-ccp.c (ccp_fold): Use fold_unary_ignore_overflow.
2031         * tree-ssa-sccvn.c (visit_reference_op_load,
2032         simplify_unary_expression): Likewise.
2033
2034 2009-01-22  Adam Nemet  <anemet@caviumnetworks.com>
2035
2036         * c-decl.c (finish_struct): Move code to set DECL_PACKED after
2037         DECL_BIT_FIELD is alreay known.  Also inherit packed for bitfields
2038         regardless of their type.
2039         * c-common.c (handle_packed_attribute): Don't ignore packed on
2040         bitfields.
2041         * c.opt (Wpacked-bitfield-compat): New warning option.
2042         * stor-layout.c (place_field): Warn if offset of a field changed.
2043         * doc/extend.texi (packed): Mention the ABI change.
2044         * doc/invoke.texi (-Wpacked-bitfield-compat): Document.
2045         (Warning Options): Add it to the list.
2046
2047 2009-01-22  H.J. Lu  <hongjiu.lu@intel.com>
2048
2049         * c-opts.c (c_common_post_options): Fix a typo in comments.
2050
2051 2009-01-22  Steve Ellcey  <sje@cup.hp.com>
2052
2053         PR middle-end/38615
2054         * gimplify.c (gimplify_init_constructor): Fix promotion of const
2055         variables to static.
2056         * doc/invoke.texi (-fmerge-all-constants): Update description.
2057
2058 2009-01-22  Uros Bizjak  <ubizjak@gmail.com>
2059
2060         PR target/38931
2061         * config/i386/i386.md (*movsi_1): Use type "mmx" for alternative 2.
2062         (*movdi_1_rex64): Use type "mmx" for alternative 5.
2063
2064 2009-01-22  Richard Earnshaw  <rearnsha@arm.com>
2065
2066         * arm.h (DATA_ALIGNMENT): Align structures, unions and arrays to
2067         a word boundary.
2068         (LOCAL_ALIGNMENT): Similarly.
2069
2070 2009-01-22  Mark Shinwell  <shinwell@codesourcery.com>
2071             Joseph Myers  <joseph@codesourcery.com>
2072
2073         * config/arm/arm.c (all_architectures): Add iWMMXt2 entry.
2074         * config/arm/arm-cores.def: New ARM_CORE entry for iWMMXt2.
2075         * config/arm/arm-tune.md: Regenerate.
2076         * doc/invoke.texi (ARM Options): Document -mcpu=iwmmxt2 and
2077         -march=iwmmxt2.
2078
2079 2009-01-22  Mark Shinwell  <shinwell@codesourcery.com>
2080
2081         * config/arm/bpabi.h (SUBTARGET_EXTRA_ASM_SPEC): Bump EABI
2082         version number to five.
2083
2084 2009-01-22  Dodji Seketeli  <dodji@redhat.com>
2085
2086         PR c++/38930
2087         * c-decl.c: (clone_underlying_type): Revert PR c++/26693 changes.
2088         * c-common.c (set_underlying_type): Likewise.
2089         (is_typedef_decl ): Likewise
2090         * tree.h: Likewise
2091         (set_underlying_type): Likewise.
2092         (is_typedef_type): Likewise.
2093
2094 2009-01-21  Vladimir Makarov  <vmakarov@redhat.com>
2095
2096         PR middle-end/38587
2097         * ira-color.c (coalesce_spill_slots): Don't coalesce allocnos
2098         crossing setjmps.
2099
2100 2009-01-21  Dave Korn  <dave.korn.cygwin@gmail.com>
2101
2102         PR bootstrap/37660
2103         * config/i386/cygwin.h (SHARED_LIBGCC_SPEC):  New helper macro.
2104         (LIBGCC_SPEC):  Don't define.
2105         (REAL_LIBGCC_SPEC):  Define instead, using SHARED_LIBGCC_SPEC.
2106
2107 2009-01-21  Uros Bizjak  <ubizjak@gmail.com>
2108
2109         PR rtl-optimization/38879
2110         * alias.c (base_alias_check): Unaligned access via AND address can
2111         alias all surrounding object types except those with sizes equal
2112         or wider than the size of unaligned access.
2113
2114 2009-01-21  Dodji Seketeli  <dodji@redhat.com>
2115
2116         PR c++/26693
2117         * c-decl.c: (clone_underlying_type): Move this ...
2118         * c-common.c (set_underlying_type): ... here.
2119         Also, make sure the function properly sets TYPE_STUB_DECL() on
2120         the newly created typedef variant type.
2121         (is_typedef_decl ): New entry point.
2122         * tree.h: Added a new member member_types_needing_access_check to
2123         struct tree_decl_non_common.
2124         (set_underlying_type): New entry point.
2125         (is_typedef_type): Likewise.
2126
2127 2009-01-21  Bingfeng Mei  <bmei@broadcom.com>
2128
2129         * alias.c (walk_mems_1, walk_mems_2, insn_alias_sets_conflict_p):
2130         Check whether two instructions have memory references that
2131         belong to conflicting alias sets.  walk_mems_1 and walk_mems_2
2132         are helper functions for traversing.
2133         * alias.h (insn_alias_sets_confilict_p): New prototypes.
2134         * ddg.c (add_inter_loop_mem_dep): Call insn_alias_sets_conflict_p
2135         not to draw dependency edge for instructions with non-conflicting
2136         alias sets.
2137
2138 2009-01-20  Joseph Myers  <joseph@codesourcery.com>
2139
2140         PR other/38758
2141         * longlong.h: Update copyright years.  Use soft-fp license notice.
2142         Sync __clz_tab declaration with glibc.
2143
2144 2009-01-20  Steve Ellcey  <sje@cup.hp.com>
2145
2146         PR target/30687
2147         * doc/extend.texi (syscall_linkage): New.
2148         (version_id): Modify.
2149
2150 2009-01-20  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2151             Richard Guenther  <rguenther@suse.de>
2152
2153         PR tree-optimization/38747
2154         PR tree-optimization/38748
2155         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Disable the VCE
2156         conversion if the base address is an indirect reference and the
2157         aliasing sets could cause issues.
2158
2159 2009-01-20  Sebastian Pop  <sebastian.pop@amd.com>
2160
2161         * common.opt (fgraphite, fgraphite-identity): Add comment for 
2162         explaining why these options are not documented.
2163
2164 2009-01-20  Sebastian Pop  <sebastian.pop@amd.com>
2165
2166         * graphite.c (stmt_simple_for_scop_p): Also handle cases when
2167         gimple_call_lhs is NULL.
2168
2169 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
2170
2171         PR target/38868
2172         * emit-rtl.c (adjust_address_1): Make sure memref is never
2173         overwritten.
2174
2175 2009-01-20  Ben Elliston  <bje@au.ibm.com>
2176
2177         * libgcov.c (__gcov_execl, __gcov_execlp, __gcov_execle): Remove
2178         const qualifier from arg parameter. Remove unnecessary cast to char *.
2179         * gcov-io.h (__gcov_execl, __gcov_execlp, __gcov_execle): Remove
2180         const qualifier from arg 2.
2181
2182 2009-01-19  Iain Sandoe  <iain.sandoe@sandoe-acoustics.co.uk>
2183
2184         * config/darwin.h: Add static-libgfortran to LINK_SPEC.
2185
2186 2009-01-19  Vladimir Makarov  <vmakarov@redhat.com>
2187
2188         PR c/38869
2189         * rtl.h (reinit_regs): New prototype.
2190         * regclass.c: Include ira.h.
2191         (reinit_regs): New.
2192         * Makefile.in (regclass.o): Add ira.h.
2193         * config/i386/i386.c (ix86_maybe_switch_abi): Use reinit_regs.
2194
2195 2009-01-18  H.J. Lu  <hongjiu.lu@intel.com>
2196
2197         PR target/38736
2198         * c-common.c (handle_aligned_attribute): Use
2199         ATTRIBUTE_ALIGNED_VALUE instead of BIGGEST_ALIGNMENT for
2200         default alignment value.
2201
2202         * c-cppbuiltin.c (c_cpp_builtins): Define __BIGGEST_ALIGNMENT__.
2203
2204         * defaults.h (ATTRIBUTE_ALIGNED_VALUE): New.
2205         * config/i386/i386.h (ATTRIBUTE_ALIGNED_VALUE): Likewise.
2206
2207         * doc/extend.texi: Update __attribute__ ((aligned)).  Document
2208         __BIGGEST_ALIGNMENT__.
2209
2210         * doc/tm.texi: Document ATTRIBUTE_ALIGNED_VALUE.
2211
2212 2009-01-18  Richard Guenther  <rguenther@suse.de>
2213
2214         PR tree-optimization/38819
2215         * tree-flow.h (operation_could_trap_helper_p): Declare.
2216         * tree-eh.c (operation_could_trap_helper_p): Export.
2217         * tree-ssa-sccvn.h (vn_nary_may_trap): Declare.
2218         * tree-ssa-sccvn.c (vn_nary_may_trap): New function.
2219         * tree-ssa-pre.c (insert_into_preds_of_block): Check if we
2220         are about to insert a possibly trapping instruction and fail
2221         in this case.
2222
2223 2009-01-18  Andreas Schwab  <schwab@suse.de>
2224
2225         * doc/install.texi (Configuration): Remove obsolete paragraph
2226         about use of --with-gnu-ld with --with-gnu-as.
2227
2228 2009-01-18  Kazu Hirata  <kazu@codesourcery.com>
2229
2230         * doc/extend.texi, doc/gimple.texi, doc/invoke.texi,
2231         doc/md.texi, doc/sourcebuild.texi, doc/tm.texi: Fix typos.
2232         Follow spelling conventions.
2233
2234 2009-01-18  Ben Elliston  <bje@au.ibm.com>
2235
2236         * bitmap.c (bitmap_obstack_alloc_stat): Adjust cast to eliminate
2237         C++ warning about implicit conversion from void * to struct
2238         bitmap_head_def *.
2239         (bitmap_obstack_free): Likewise for bitmap_element *.
2240         * Makefile.in (bitmap.o-warn): Remove.
2241
2242 2009-01-17  Dave Korn  <dave.korn.cygwin@gmail.com>
2243
2244         * Makefile.in (BACKENDLIBS):  Reorder to match dependencies.
2245
2246 2009-01-17  Sebastian Pop  <sebastian.pop@amd.com>
2247             Tobias Grosser  <tobi.grosser@amd.com>
2248
2249         * graphite.c (graphite_trans_scop_block): Do not block single
2250         nested loops.
2251
2252 2009-01-16  Alexandre Oliva  <aoliva@redhat.com>
2253
2254         * ebitmap.h (ebitmap_iter_init): Initialize all fields.
2255         * ipa-struct-reorg.c (gen_struct_type): Replace known-true
2256         test with assertion.
2257
2258 2009-01-16  Richard Guenther  <rguenther@suse.de>
2259
2260         PR tree-optimization/38835
2261         PR middle-end/36227
2262         * fold-const.c (fold_binary): Remove PTR + INT -> (INT)(PTR p+ INT)
2263         and INT + PTR -> (INT)(PTR p+ INT) folding.
2264         * tree-ssa-address.c (create_mem_ref): Properly use POINTER_PLUS_EXPR.
2265
2266 2009-01-16  Adam Nemet  <anemet@caviumnetworks.com>
2267
2268         PR target/38554
2269         * expmed.c (expand_shift): With SHIFT_COUNT_TRUNCATED, don't lift
2270         the subreg from a lowpart subreg if it is also casting the value.
2271
2272 2009-01-16  Sebastian Pop  <sebastian.pop@amd.com>
2273             Tobias Grosser  <tobi.grosser@amd.com>
2274
2275         * graphite.c (compare_prefix_loops): New.
2276         (build_scop_canonical_schedules): Rewritten.
2277         (graphite_transform_loops): Move build_scop_canonical_schedules
2278         after build_scop_iteration_domain.
2279
2280 2009-01-16  Sebastian Pop  <sebastian.pop@amd.com>
2281             Tobias Grosser  <tobi.grosser@amd.com>
2282
2283         * graphite.c (add_conditions_to_domain): Add the loops to 
2284         the dimension of the iteration domain.  Do copy the domain
2285         only when it exists.
2286         (build_scop_conditions_1): Do not call add_conditions_to_domain.
2287         (add_conditions_to_constraints): New.
2288         (can_generate_code_stmt, can_generate_code): Removed.
2289         (gloog): Do not call can_generate_code.
2290         (graphite_transform_loops): Call add_conditions_to_constraints
2291         after building the iteration domain.
2292
2293 2009-01-16  Jakub Jelinek  <jakub@redhat.com>
2294
2295         PR tree-optimization/38789
2296         * tree-ssa-threadedge.c
2297         (record_temporary_equivalences_from_stmts_at_dest): Ignore calls to
2298         __builtin_constant_p.
2299
2300 2009-01-16  Kenneth Zadeck  <zadeck@naturalbridge.com>
2301
2302         * dce.c (delete_unmarked_insns): Reversed the order that insns are
2303         examined before deleting them.
2304         
2305 2009-01-16  Richard Earnshaw  <rearnsha@arm.com>
2306
2307         * function.c (aggregate_value_p): Correctly extract the function
2308         type from CALL_EXPR_FN lookup.
2309
2310 2009-01-16  Hariharan Sandanagobalane  <hariharan@picochip.com>
2311
2312         * config/picochip/picochip.c (picochip_override_options): Revert
2313         CFI asm flag disable commited previously.
2314
2315 2009-01-15  Sebastian Pop  <sebastian.pop@amd.com>
2316             Tobias Grosser  <tobi.grosser@amd.com>
2317             Jan Sjodin  <jan.sjodin@amd.com>
2318
2319         * graphite.c (scan_tree_for_params): On substractions negate
2320         all the coefficients of the term.
2321         (clast_to_gcc_expression_red): New.  Handle reduction expressions
2322         of more than two operands.
2323         (clast_to_gcc_expression): Call clast_to_gcc_expression_red.
2324         (get_vdef_before_scop): Handle also the case of default definitions.
2325
2326 2009-01-15  Richard Sandiford  <rdsandiford@googlemail.com>
2327
2328         * caller-save.c (add_used_regs_1, add_used_regs): New functions.
2329         (insert_one_insn): Use them instead of REG_DEAD and REG_INC notes.
2330         Also use them when walking CALL_INSN_FUNCTION_USAGE.
2331
2332 2009-01-15  H.J. Lu  <hongjiu.lu@intel.com>
2333             Joey Ye  <joey.ye@intel.com>
2334
2335         PR middle-end/37843
2336         * cfgexpand.c (expand_stack_alignment): Don't update stack
2337         boundary nor check incoming stack boundary here.
2338         (gimple_expand_cfg): Update stack boundary and check incoming
2339         stack boundary here.
2340
2341 2009-01-15  Kenneth Zadeck  <zadeck@naturalbridge.com>
2342
2343         * dce.c (find_call_stack_args, delete_unmarked_insns): Fixed comments.
2344         
2345 2009-01-14  Jakub Jelinek  <jakub@redhat.com>
2346
2347         PR rtl-optimization/38245
2348         * calls.c (expand_call): Add stack arguments to
2349         CALL_INSN_FUNCTION_USAGE even for pure calls (when
2350         ACCUMULATE_OUTGOING_ARGS) and even for args partially passed
2351         in regs and partially in memory or BLKmode arguments.
2352         (emit_library_call_value_1): Add stack arguments to
2353         CALL_INSN_FUNCTION_USAGE even for pure calls (when
2354         ACCUMULATE_OUTGOING_ARGS).
2355         * dce.c: Include tm_p.h.
2356         (find_call_stack_args): New function.
2357         (deletable_insn_p): Call it for CALL_P insns.  Add ARG_STORES
2358         argument.
2359         (mark_insn): Call find_call_stack_args for CALL_Ps.
2360         (prescan_insns_for_dce): Walk insns backwards in bb rather than
2361         forwards.  Allocate and free arg_stores bitmap if needed, pass it
2362         down to deletable_insn_p, don't mark stores set in arg_stores
2363         bitmap, clear the bitmap at the beginning of each bb.
2364         * Makefile.in (dce.o): Depend on $(TM_P_H).
2365
2366 2009-01-14  Michael Meissner  <gnu@the-meissners.org>
2367
2368         PR target/22599
2369         * config/i386/i386.c (print_operand): Add tests for 'D', 'C', 'F', 'f'
2370         to make sure the insn is a conditional test (bug 22599).  Reformat a
2371         few long lines.
2372
2373 2009-01-14  Sebastian Pop  <sebastian.pop@amd.com>
2374
2375         PR middle-end/38431
2376         * graphite.c (get_vdef_before_scop, scop_adjust_vphi): New.
2377         (scop_adjust_phis_for_liveouts): Call scop_adjust_vphi.
2378         (gloog): Do not call cleanup_tree_cfg.
2379         (graphite_transform_loops): Call cleanup_tree_cfg after all 
2380         scops have been code generated.
2381
2382 2009-01-14  Basile Starynkevitch  <basile@starynkevitch.net>
2383         * doc/gty.texi (Invoking the garbage collector): Added new node
2384         and section documenting ggc_collect.
2385
2386 2009-01-14  Richard Guenther  <rguenther@suse.de>
2387
2388         PR tree-optimization/38826
2389         PR middle-end/38477
2390         * tree-ssa-structalias.c (emit_alias_warning): Emit the pointer
2391         initialization notes only if we actually emitted a warning.
2392         (intra_create_variable_infos): Add constraints for a result decl
2393         that is passed by hidden reference.
2394         (build_pred_graph): Mark all related variables non-direct on
2395         address-taking.
2396
2397 2009-01-14  Nick Clifton  <nickc@redhat.com>
2398
2399         * ira-conflicts.c: Include addresses.h for the definition of
2400         base_reg_class.
2401         (ira_build_conflicts): Use base_reg_class instead of BASE_REG_CLASS.
2402         * Makefile.in: Add a dependency of ira-conflicts.o on addresses.h.
2403
2404 2009-01-13  Vladimir Makarov  <vmakarov@redhat.com>
2405
2406         PR target/38811
2407         * Makefile.in (ira-lives.o): Add except.h.
2408
2409         * ira-lives.c: Include except.h.
2410         (process_bb_node_lives): Process can_throw_internal.
2411
2412 2009-01-13  Jakub Jelinek  <jakub@redhat.com>
2413
2414         PR rtl-optimization/38774
2415         * combine.c (simplify_set): When undoing cc_use change, don't do
2416         PUT_CODE on the newly created comparison, but instead put back the
2417         old comparison.
2418
2419 2009-01-13  Joseph Myers  <joseph@codesourcery.com>
2420
2421         * doc/invoke.texi (ARM Options): Update lists of -mcpu and -march
2422         values.  Remove duplicate arm8 entry.
2423
2424 2009-01-13  Sebastian Pop  <sebastian.pop@amd.com>
2425
2426         PR tree-optimization/38786
2427         * graphite.c (expand_scalar_variables_ssa_name): New, outlined from
2428         the SSA_NAME case of expand_scalar_variables_expr.
2429         Set the type of an expression to the type of its assign statement.
2430         (expand_scalar_variables_expr): Also gather the scalar computation
2431         used to index the memory access.  Do not pass loop_p.
2432         Fix comment.  Stop recursion on tcc_constant or tcc_declaration.
2433         (expand_scalar_variables_stmt): Pass to expand_scalar_variables_expr
2434         the gimple_stmt_iterator where it inserts new code.
2435         Do not pass loop_p.
2436         (copy_bb_and_scalar_dependences): Do not pass loop_p.
2437         (translate_clast): Update call to copy_bb_and_scalar_dependences.
2438
2439 2009-01-13  Sebastian Pop  <sebastian.pop@amd.com>
2440
2441         * graphite.h (debug_value): Removed.
2442         * graphite.c (debug_value): Removed.
2443
2444 2009-01-13  Richard Earnshaw  <rearnsha@arm.com>
2445
2446         * config/arm/arm.c (output_move_double): Don't synthesize thumb-2
2447         ldrd/strd with two 32-bit instructions.
2448
2449 2009-01-13  Richard Earnshaw  <rearnsha@arm.com>
2450
2451         * config/arm/arm.c (struct processors): Pass for speed down into
2452         cost helper functions.
2453         (const_ok_for_op): Handle COMPARE and inequality nodes.
2454         (arm_rtx_costs_1): Rewrite.
2455         (arm_size_rtx_costs): Update prototype.
2456         (arm_rtx_costs): Pass speed down to helper functions.
2457         (arm_slowmul_rtx_costs): Rework cost calculations.
2458         (arm_fastmul_rtx_costs, arm_xscale_rtx_costs): Likewise.
2459         (arm_9e_rtx_costs): Likewise.
2460
2461 2009-01-13  Uros Bizjak  <ubizjak@gmail.com>
2462
2463         * config/alpha/alpha.c (alpha_legitimate_address_p): Explicit
2464         relocations of local symbols wider than UNITS_PER_WORD are not valid.
2465         (alpha_legitimize_address): Do not split local symbols wider than
2466         UNITS_PER_WORD into HIGH/LO_SUM parts.
2467
2468 2009-01-13  Danny Smith  <dannysmith@users.sourceforge.net>
2469
2470         PR bootstrap/38580
2471         * gcc.c (process_command): Replace call to execvp with calls
2472         to pex_one and exit.
2473
2474 2009-01-03  Anatoly Sokolov  <aesok@post.ru>
2475
2476         PR target/29141
2477         * config/avr/t-avr (LIB1ASMFUNCS): Add _tablejump_elpm.
2478         * config/avr/libgcc.S (__do_global_ctors, __do_global_dtors): Add
2479         variant for devices with 3-byte PC.
2480         (__tablejump_elpm__) : New.
2481
2482 2009-01-12  Jakub Jelinek  <jakub@redhat.com>
2483
2484         PR c/32041
2485         * c-parser.c (c_parser_postfix_expression): Allow `->' in
2486         offsetof member-designator, handle it as `[0].'.
2487
2488 2009-01-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2489
2490         * pa.c (pa_asm_output_mi_thunk): Use pc-relative branch to thunk
2491         function when not using named sections on targets with named sections
2492         if branch distance is less than 262132.
2493
2494 2009-01-12  Richard Earnshaw  <rearnsha@arm.com>
2495
2496         * combine.c (combine_instructions):  Recompute
2497         optimize_this_for_speed_p  for each BB in the main combine loop.
2498
2499 2009-01-12  Tomas Bily  <tbily@suse.cz>
2500
2501         PR middlend/38385
2502         * tree-loop-distribution.c (prop_phis): New function.
2503         (generate_builtin): Call prop_phis.
2504         * testsuite/gcc.dg/tree-ssa/pr38385.c: New file.
2505
2506 2009-01-12  Jakub Jelinek  <jakub@redhat.com>
2507
2508         PR tree-optimization/38807
2509         * tree-ssa-reassoc.c (remove_visited_stmt_chain): Don't look at
2510         gimple_visited_p unless stmt is GIMPLE_ASSIGN.
2511
2512 2009-01-11  Adam Nemet  <anemet@caviumnetworks.com>
2513
2514         * expmed.c (store_bit_field_1): Properly truncate the paradoxical
2515         subreg of op0 to the original op0.
2516
2517 2009-01-11  Laurent GUERBY  <laurent@guerby.net>
2518
2519         * doc/sourcebuild.texi (Source Tree): Move up intl and fixinc.
2520         
2521 2009-01-11  Markus Schoepflin  <markus.schoepflin@comsoft.de>
2522
2523         PR debug/7055
2524         * gcc/mips-tfile.c (parse_def): Fix parsing of def strings
2525         starting with digits.
2526
2527 2009-01-10  Jakub Jelinek  <jakub@redhat.com>
2528
2529         PR target/38695
2530         * config/arm/arm.c (arm_is_long_call_p): Don't call
2531         arm_function_in_section_p if decl isn't a FUNCTION_DECL.
2532
2533 2009-01-09  Steven Bosscher  <steven@gcc.gnu.org>
2534
2535         * regrename.c (regrename_optimize): Fix dumping.
2536         (find_oldest_value_reg): Preserve REG_POINTER.
2537         (copy_hardreg_forward_1): Likewise.
2538
2539 2009-01-09  Diego Novillo  <dnovillo@google.com>
2540
2541         * gimple.h (struct gimple_statement_base) <uid>: Document
2542         the restrictions on its use.
2543         (gimple_uid): Tidy.
2544         (gimple_set_uid): Tidy.
2545
2546 2009-01-09  Jakub Jelinek  <jakub@redhat.com>
2547
2548         * config/i386/i386.c (ix86_expand_movmem, ix86_expand_setmem): Add
2549         zero guard even if align_bytes != 0 and count is smaller than
2550         size_needed.
2551
2552 2009-01-09  Vladimir Makarov  <vmakarov@redhat.com>
2553
2554         PR rtl-optimization/38495
2555         * ira-emit.c (print_move_list, ira_debug_move_list): New functions.
2556         (add_range_and_copies_from_move_list): Print all added ranges.
2557         Add ranges to memory optimized destination.
2558
2559 2009-01-09  Jakub Jelinek  <jakub@redhat.com>
2560
2561         PR target/38686
2562         PR target/38708
2563         * config/i386/i386.c (override_options): Reject
2564         -mstringop-strategy=rep_8byte with -m32.
2565         (ix86_expand_movmem): For size_needed == 1 set epilogue_size_needed
2566         to 1.  Do count comparison against epilogue_size_needed at compile
2567         time even when count_exp was constant forced into register.  For
2568         size_needed don't jump to epilogue, instead just avoid aligning
2569         and invoke the body algorithm.  If need_zero_guard, add zero guard
2570         even if count is non-zero, but smaller than size_needed + number of
2571         bytes that could be stored for alignment.
2572         (ix86_expand_setmem): For size_needed == 1 set epilogue_size_needed
2573         to 1.  If need_zero_guard, add zero guard even if count is non-zero,
2574         but smaller than size_needed + number of bytes that could be stored
2575         for alignment.  Compare size_needed with epilogue_size_needed instead
2576         of desired_align - align, don't adjust size_needed, pass
2577         epilogue_size_needed to the epilogue expanders.
2578
2579         PR c/35742
2580         * c-pretty-print.c (pp_c_expression): Handle GOTO_EXPR like BIND_EXPR.
2581
2582 2009-01-09  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2583
2584         * pa.c (last_address): Change to unsigned.
2585         (update_total_code_bytes): Change argument to unsigned.  Don't
2586         check if insn addresses are set.
2587         (pa_output_function_epilogue): Set last_address to UINT_MAX if insn
2588         addresses are not set.
2589         (pa_asm_output_mi_thunk): Handle wrap when updating last_address.
2590
2591 2009-01-09  Nick Clifton  <nickc@redhat.com>
2592
2593         * config/sh/symbian.c: Replace uses of DECL_INLINE with
2594         DECL_DECLARED_INLINE_P.
2595
2596 2009-01-09  Jakub Jelinek  <jakub@redhat.com>
2597
2598         PR middle-end/38347
2599         * dojump.c (do_jump_by_parts_zero_rtx): Use mode instead of
2600         GET_MODE (op0) in operand_subword_force calls.
2601
2602         PR middle-end/38771
2603         * fold-const.c (fold_unary): For COMPOUND_EXPR and COND_EXPR,
2604         fold_convert arg0 operands to TREE_TYPE (op0) first.
2605
2606 2009-01-08  Vladimir Makarov  <vmakarov@redhat.com>
2607
2608         * params.def (ira-max-conflict-table-size): Decrease default value
2609         to 1000.
2610
2611 2009-01-08  Jakub Jelinek  <jakub@redhat.com>
2612
2613         PR tree-optimization/37031
2614         * lambda-code.c (lambda_collect_parameters): Call pointer_set_destroy
2615         on parameter_set.
2616         (build_access_matrix): Reserve correct size for AM_MATRIX vector,
2617         allocate it using gc instead of heap, use VEC_quick_push instead of
2618         VEC_safe_push.
2619         * graphite.c (build_access_matrix): Allocate AM_MATRIX vector using gc
2620         instead of heap, use VEC_quick_push instead of VEC_safe_push.
2621         * tree-data-ref.h (struct access_matrix): Change matrix to gc
2622         allocated vector from heap allocated.
2623         * lambda.h: Add DEF_VEC_ALLOC_P for gc allocated lambda_vector.
2624         * tree-loop-linear.c (linear_transform_loops): Allocate nest
2625         vector only after perfect_loop_nest_depth call.
2626
2627 2009-01-08  Sebastian Pop  <sebastian.pop@amd.com>
2628             Jan Sjodin  <jan.sjodin@amd.com>
2629
2630         PR tree-optimization/38559
2631         * graphite.c (debug_value, copy_constraint,
2632         swap_constraint_variables, scale_constraint_variable, ): New.
2633         (get_lower_bound, get_upper_bound): Removed.
2634         (graphite_trans_bb_strip_mine): Clean up this code that works
2635         only for constant number of iterations.  Fully copy upper and
2636         lower bound constraints, not only the constant part of them.
2637         * graphite.h (debug_value): Declared.
2638
2639 2009-01-08  Ira Rosen  <irar@il.ibm.com>
2640
2641         PR tree-optimization/37194
2642         * tree-vect-transform.c (vect_estimate_min_profitable_iters):
2643         Don't add the cost of cost model guard in prologue to scalar 
2644         outside cost in case of known number of iterations.
2645
2646 2009-01-07  Nathan Froyd  <froydnj@codesourcery.com>
2647             Alan Modra  <amodra@bigpond.net.au>
2648
2649         * config/rs6000/rs6000.c (rs6000_legitimize_address): Check for
2650         non-word-aligned REG+CONST addressing.
2651
2652 2009-01-07  Uros Bizjak  <ubizjak@gmail.com>
2653
2654         PR target/38706
2655         * config/alpha/alpha.c (alpha_end_function): For TARGET_ABI_OSF, call
2656         free_after_compilation when outputting a thunk.
2657         (alpha_output_mi_thunk_osf): Assert that we are processing a thunk.
2658         Do not call free_after_compilation here.
2659
2660 2009-01-07  Uros Bizjak  <ubizjak@gmail.com>
2661
2662         * config/i386/i386.c (ix86_target_string): Use ARRAY_SIZE.
2663         (ix86_valid_target_attribute_inner_p): Ditto.
2664
2665 2009-01-07  Jan Sjodin  <jan.sjodin@amd.com>
2666
2667         PR tree-optimization/38492
2668         PR tree-optimization/38498
2669         * tree-check.c (operator_is_linear, scev_is_linear_expression): New.
2670         * tree-chrec.h (scev_is_linear_expression): Declared.
2671         * graphite.c (graphite_cannot_represent_loop_niter): New.
2672         (scopdet_basic_block_info): Call graphite_cannot_represent_loop_niter.
2673         (graphite_loop_normal_form): Use gcc_assert.
2674         (scan_tree_for_params): Use CASE_CONVERT.
2675         (phi_node_is_iv, bb_contains_non_iv_scalar_phi_nodes): New.
2676         (build_scop_conditions_1): Call bb_contains_non_iv_scalar_phi_nodes.
2677         Use gcc_assert.  Discard scops that contain unhandled cases.
2678         (build_scop_conditions): Return a boolean status for unhandled cases.
2679         (strip_mine_profitable_p): Print the loop number, not its depth.
2680         (is_interchange_valid): Pass the depth of the loop nest, don't
2681         recompute it wrongly.
2682         (graphite_trans_bb_block): Same.
2683         (graphite_trans_bb_block): Print tentative of loop blocking.
2684         (graphite_trans_scop_block): Do not print that the loop has been
2685         blocked.
2686         (graphite_transform_loops): Do not handle scops that contain condition
2687         scalar phi nodes.
2688
2689 2009-01-07  H.J. Lu  <hongjiu.lu@intel.com>
2690
2691         AVX Programming Reference (December, 2008)
2692         * config/i386/avxintrin.h (_mm256_stream_si256): New.
2693         (_mm256_stream_pd): Likewise.
2694         (_mm256_stream_ps): Likewise.
2695
2696         * config/i386/i386.c (ix86_builtins): Add IX86_BUILTIN_MOVNTDQ256,
2697         IX86_BUILTIN_MOVNTPD256 and IX86_BUILTIN_MOVNTPS256.
2698         (ix86_special_builtin_type): Add VOID_FTYPE_PV4DI_V4DI.
2699         (bdesc_special_args): Add __builtin_ia32_movntdq256,
2700         __builtin_ia32_movntpd256 and __builtin_ia32_movntps256.
2701         (ix86_init_mmx_sse_builtins): Handle VOID_FTYPE_PV4DI_V4DI.
2702         (ix86_expand_special_args_builtin): Likewise.
2703
2704         * config/i386/sse.md (AVXMODEDI): New.
2705         (avx_movnt<mode>): Likewise.
2706         (avx_movnt<mode>): Likewise.
2707         (<sse>_movnt<mode>): Remove AVX support.
2708         (sse2_movntv2di): Likewise.
2709
2710 2009-01-07  Richard Guenther  <rguenther@suse.de>
2711
2712         PR middle-end/38751
2713         * fold-const.c (extract_muldiv): Remove obsolete comment.
2714         (fold_plusminus_mult_expr): Undo MINUS_EXPR
2715         to PLUS_EXPR canonicalization for the canonicalization.
2716
2717 2009-01-07  Gerald Pfeifer  <gerald@pfeifer.com>
2718
2719         * doc/install.texi (alpha*-dec-osf*): Remove note on 32-bit
2720         hosted cross-compilers generating less efficient code.
2721
2722 2009-01-06  Richard Sandiford  <rdsandiford@googlemail.com>
2723
2724         * function.h (rtl_data): Add a dbr_scheduled_p field.
2725         * reorg.c (dbr_schedule): Set it.
2726         (gate_handle_delay_slots): Check it.
2727         * config/mips/mips.c (mips_base_delayed_branch): Delete.
2728         (mips_reorg): Check flag_delayed_branch instead of
2729         mips_base_delayed_branch.
2730         (mips_override_options): Don't set mips_base_delayed_branch
2731         or flag_delayed_branch.
2732
2733 2009-01-06  Richard Sandiford  <rdsandiford@googlemail.com>
2734
2735         PR rtl-optimization/38426.
2736         * ira.c (ira): Set current_function_is_leaf earlier.
2737
2738 2009-01-06  Jakub Jelinek  <jakub@redhat.com>
2739
2740         PR rtl-optimization/38722
2741         * combine.c (try_combine): Don't modify PATTERN (i3) and notes
2742         too early, only set a flag and modify after last possible
2743         undo_all point.
2744
2745 2009-01-06  Janis Johnson  <janis187@us.ibm.com>
2746
2747         PR c/34252
2748         * ginclude/float.h: Rename DECnn_DEN to DECnn_SUBNORMAL_MIN.
2749         * real.c (decimal_single_format): Correct values of emin and emax.
2750         (decimal_double_format): Ditto.
2751         (decimal_quad_format): Ditto.
2752         * c-cppbuiltin.c (builtin_define_decimal_float_constants): Adjust
2753         computation of DECnn_MIN and DECnn_MAX for corrected values of
2754         emin and emax.  Define __DECnn_SUBNORMAL_MIN__ instead of
2755         __DECnn_MIN__, and adjust its computation for the corrected value
2756         of emin.
2757
2758 2009-01-06  Jan Hubicka  <jh@suse.cz>
2759
2760         PR target/38744
2761         * config/i386/i386.c (ix86_expand_call): Use ARRAY_SIZE.
2762
2763 2009-01-06  Gerald Pfeifer  <gerald@pfeifer.com>
2764
2765         * doc/contrib.texi (Contributors): Slightly adjust the end note.
2766         Add Robert Clark to the list of testers.
2767
2768 2009-01-06  Jan Hubicka  <jh@suse.cz>
2769             Kai Tietz  <kai.tietz@onevision.com>
2770
2771         * config/i386/i386.md (*msabi_syvabi): Add SSE regs clobbers.
2772         * config/i386/i386.c (ix86_expand_call): Add clobbers.
2773
2774 2009-01-06  Jan Hubicka  <jh@suse.cz>
2775             Kai Tietz  <kai.tietz@onevision.com>
2776
2777         * config/i386/i386.h (CONDITIONAL_CALL_USAGE): SSE regs are not used
2778         for w64 ABI.
2779         * config/i386/i386.c (struct ix86_frame): Add padding0 and nsseregs.
2780         (ix86_nsaved_regs): Count only general purpose regs.
2781         (ix86_nsaved_sseregs): New.
2782         (ix86_compute_frame_layout): Update nsseregs; set preferred alignment
2783         to 16 for w64; compute padding and size of sse reg save area.
2784         (ix86_emit_save_regs, ix86_emit_save_regs_using_mov): Save only
2785         general purpose regs.
2786         (ix86_emit_save_sse_regs_using_mov): New.
2787         (ix86_expand_prologue): Save SSE regs if needed.
2788         (ix86_emit_restore_regs_using_mov): Use only general purpose regs.
2789         (ix86_emit_restore_sse_regs_using_mov): New.
2790         (ix86_expand_epilogue): Save SSE regs if needed.
2791
2792 2009-01-06  Jan Hubicka  <jh@suse.cz>
2793             Kai Tietz  <kai.tietz@onevision.com>
2794
2795         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Enable for MSABI
2796         * config/i386/i386.c (init_cumulative_args): Disallow calls of MSABI
2797         functions when accumulate outgoing args is off.
2798
2799 2009-01-06  H.J. Lu  <hongjiu.lu@intel.com>
2800
2801         PR bootstrap/38742
2802         * ira-color.c (ira_reuse_stack_slot): Check ENABLE_IRA_CHECKING
2803         before using pseudos_have_intersected_live_ranges_p.
2804
2805         * ira-int.h (ira_assert): Always define.
2806
2807 2009-01-06  H.J. Lu  <hongjiu.lu@intel.com>
2808
2809         AVX Programming Reference (December, 2008)
2810         * config/i386/avxintrin.h (_mm_permute2_pd): Removed.
2811         (_mm256_permute2_pd): Likewise.
2812         (_mm_permute2_ps): Likewise.
2813         (_mm256_permute2_ps): Likewise.
2814         * config/i386/i386.md (UNSPEC_VPERMIL2): Likewise.
2815         * config/i386/sse.md (avx_vpermil2<mode>3): Likewise.
2816
2817         * config/i386/i386.c (ix86_builtins): Remove
2818         IX86_BUILTIN_VPERMIL2PD, IX86_BUILTIN_VPERMIL2PS,
2819         IX86_BUILTIN_VPERMIL2PD256 and IX86_BUILTIN_VPERMIL2PS256.
2820         (ix86_builtin_type): Remove V8SF_FTYPE_V8SF_V8SF_V8SI_INT,
2821         V4DF_FTYPE_V4DF_V4DF_V4DI_INT, V4SF_FTYPE_V4SF_V4SF_V4SI_INT
2822         and V2DF_FTYPE_V2DF_V2DF_V2DI_INT.
2823         (bdesc_args): Remove __builtin_ia32_vpermil2pd,
2824         __builtin_ia32_vpermil2ps, __builtin_ia32_vpermil2pd256 and
2825         __builtin_ia32_vpermil2ps256.
2826         (ix86_init_mmx_sse_builtins): Updated.
2827         (ix86_expand_args_builtin): Likewise.
2828
2829 2009-01-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2830
2831         * pa.c (output_call): Relocate non-jump insns in the delay slot of
2832         long absolute calls when generating PA 2.0 code.
2833
2834 2009-01-05  Vladimir Makarov  <vmakarov@redhat.com>
2835
2836         PR rtl-optimization/38583
2837         * params.h (IRA_MAX_CONFLICT_TABLE_SIZE): New macro.
2838
2839         * params.def (ira-max-conflict-table-size): New.
2840
2841         * doc/invoke.texi (ira-max-conflict-table-size): Decribe.
2842         
2843         * ira.h (ira_conflicts_p): New external definition.
2844         
2845         * ira-conflicts.c (build_conflict_bit_table): Do not build too big
2846         table.  Report this.  Return result of building.
2847         (ira_build_conflicts): Use ira_conflicts_p.  Check result of
2848         building conflict table.
2849
2850         * ira-color.c (fast_allocation): Use num instead of ira_allocnos_num.
2851         (ira_color): Use ira_conflicts_p.
2852         
2853         * global.c: Include ira.h.
2854         (pseudo_for_reload_consideration_p, build_insn_chain): Use
2855         ira_conflicts_p.
2856
2857         * Makefile.in (global.o): Add ira.h.
2858         
2859         * ira-build.c (mark_all_loops_for_removal,
2860         propagate_some_info_from_allocno): New.
2861         (remove_unnecessary_allocnos): Call
2862         propagate_some_info_from_allocno.
2863         (remove_low_level_allocnos): New.
2864         (remove_unnecessary_regions): Add parameter.  Call
2865         mark_all_loops_for_removal and remove_low_level_allocnos.  Pass
2866         parameter to remove_unnecessary_regions.
2867         (ira_build): Remove all regions but root if the conflict table was
2868         not built.  Update conflict hard regs for allocnos crossing calls.
2869
2870         * ira.c (ira_conflicts_p): New global.
2871         (ira): Define and use ira_conflicts_p.
2872
2873         * reload1.c (compute_use_by_pseudos, reload, count_pseudo,
2874         count_spilled_pseudo, find_reg, alter_reg, finish_spills,
2875         emit_input_reload_insns, delete_output_reload): Use ira_conflicts_p.
2876         
2877 2009-01-06  Ben Elliston  <bje@au.ibm.com>
2878
2879         * gengtype-lex.l (YY_NO_INPUT): Define.
2880
2881 2009-01-05  Andrew Pinski  <andrew_pinski@playstation.sony.com>
2882
2883         PR c/34911
2884         * c-common.c (handle_vector_size_attribute): Also reject
2885         BOOLEAN_TYPE types.
2886
2887 2009-01-05  Sebastian Pop  <sebastian.pop@amd.com>
2888
2889         PR tree-optimization/38492
2890         * graphite.c (rename_map_elt, debug_rename_elt,
2891         debug_rename_map_1, debug_rename_map, new_rename_map_elt,
2892         rename_map_elt_info, eq_rename_map_elts,
2893         get_new_name_from_old_name, bb_in_sese_p): Moved around.
2894         (sese_find_uses_to_rename_use): Renamed sese_build_livein_liveouts_use.
2895         (sese_find_uses_to_rename_bb): Renamed sese_build_livein_liveouts_bb.
2896         (sese_build_livein_liveouts): New.
2897         (new_sese, free_sese): New.
2898         (new_scop): Call new_sese.
2899         (free_scop): Call free_sese.
2900         (rename_variables_from_edge, rename_phis_end_scop): Removed.
2901         (register_old_new_names): Renamed register_old_and_new_names.
2902         (register_scop_liveout_renames, add_loop_exit_phis,
2903         insert_loop_close_phis, struct igp,
2904         default_liveout_before_guard, add_guard_exit_phis,
2905         insert_guard_phis, copy_renames): New.
2906         (translate_clast): Call insert_loop_close_phis and insert_guard_phis.
2907         (sese_add_exit_phis_edge): Renamed scop_add_exit_phis_edge.
2908         (rewrite_into_sese_closed_ssa): Renamed scop_insert_phis_for_liveouts.
2909         (scop_adjust_phis_for_liveouts): New.
2910         (gloog): Call scop_adjust_phis_for_liveouts.
2911
2912         * graphite.h (struct sese): Documented.  Added fields liveout,
2913         num_ver and livein.
2914         (SESE_LIVEOUT, SESE_LIVEIN, SESE_LIVEIN_VER, SESE_NUM_VER): New.
2915         (new_sese, free_sese, sese_build_livein_liveouts): Declared.
2916         (struct scop): Added field liveout_renames.
2917         (SCOP_LIVEOUT_RENAMES): New.
2918
2919 2009-01-05  Harsha Jagasia  <harsha.jagasia@amd.com>
2920
2921         PR tree-optimization/38510
2922         * graphite.c (recompute_all_dominators): Call mark_irreducible_loops.
2923         (translate_clast): Call recompute_all_dominators before
2924         graphite_verify.
2925         (gloog): Call recompute_all_dominators before graphite_verify.
2926
2927 2009-01-05  Harsha Jagasia  <harsha.jagasia@amd.com>
2928             Jan Sjodin  <jan.sjodin@amd.com>
2929
2930         PR tree-optimization/38500
2931         * graphite.c (create_sese_edges): Call fix_loop_structure after
2932         splitting blocks.
2933
2934 2009-01-05  Joel Sherrill  <joel.sherrill@oarcorp.com>
2935
2936         * config.gcc: Add m32r*-*-rtems*.
2937         * config/m32r/rtems.h: New file.
2938
2939 2009-01-05  Ben Elliston  <bje@au.ibm.com>
2940
2941         * Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
2942         (.po.pox): Likewise.
2943         (po/gcc.pot): Likewise.
2944
2945 2009-01-04  David S. Miller  <davem@davemloft.net>
2946
2947         * config/sparc/sparc.h (SECONDARY_MEMORY_NEEDED_RTX): Delete.
2948         (STARTING_FRAME_OFFSET): Always set to zero.
2949
2950 2009-01-04  Richard Sandiford  <rdsandiford@googlemail.com>
2951
2952         * tree.def (LSHIFT_EXPR, RSHIFT_EXPR): Add commentary.
2953         * tree-cfg.c (verify_gimple_assign_binary): Allow shifts of
2954         fixed-point types, and vectors of the same.
2955
2956 2009-01-04  Richard Sandiford  <rdsandiford@googlemail.com>
2957
2958         * config/mips/sync.md (*mb_barrier): Rename to...
2959         (*memory_barrier): ...this.
2960
2961 2009-01-04  Jonathan Wakely  <jwakely.gcc@gmail.com>
2962
2963         * doc/extend.texi (Function Attributes): Move @cindex after @item
2964         for 'artificial' and 'flatten'. Fix grammar for 'externally_visible'
2965         and put in alphabetical order. Fix 'target' name and put in order.
2966         * doc/invoke.texi (-Wstrict-null-sentinel, -fipa-matrix-reorg): Fix
2967         typos.
2968
2969 2009-01-04  Uros Bizjak  <ubizjak@gmail.com>
2970
2971         * config/s390/s390.md (UNSPEC_MB): Rename from UNSPECV_MB.
2972         (memory_barrier): Expand as unspec instead of unspec_volatile.
2973         Remove mem:BLK from insn operands.  Use Pmode scratch register.
2974         (*memory_barrier): Define as unspec instead of unspec_volatile.
2975         Use (match_dup 0) as input operand.
2976
2977         * config/sparc/sparc.md (UNSPEC_MEMBAR): Rename from UNSPECV_MEMBAR.
2978         * config/sparc/sync.md (memory_barrier): Expand as unspec instead of
2979         unspec_volatile.  Remove mem:BLK from insn operands.  Use Pmode
2980         scratch register.  Remove operand 1.
2981         (*stbar): Define as unspec instead of unspec_volatile.
2982         Use (match_dup 0) as input operand, remove (const_int 8).
2983         (*membar): Define as unspec instead of unspec_volatile.
2984         Use (match_dup 0) as input operand, remove input operand 2.
2985
2986         * config/xtensa/xtensa.md (UNSPEC_MEMW): Rename from UNSPECV_MEMW.
2987         (memory_barrier): Expand as unspec instead of unspec_volatile.
2988         Remove mem:BLK from insn operands.  Use Pmode scratch register.
2989         (*memory_barrier): Define as unspec instead of unspec_volatile.
2990         Use (match_dup 0) as input operand.
2991
2992         * config/ia64/sync.md (memory_barrier): Redefine as expander pattern.
2993         Remove mem:BLK from insn operands.  Use Pmode scratch register.
2994         Set volatile flag on operand 0.
2995         (*memory_barrier): New insn pattern.
2996
2997         * config/rs6000/sync.md (memory_barrier): Remove mem:BLK from
2998         insn operands.
2999         (*memory_barrier): Use (match_dup 0) as input operand.
3000
3001         * config/mips/sync.md (memory_barrier): Redefine as expander pattern.
3002         Remove mem:BLK from insn operands.  Use Pmode scratch register.
3003         Set volatile flag on operand 0.
3004         (*mb_internal): New insn pattern.
3005
3006         * config/alpha/sync.md (*memory_barrier): Rename from *mb_internal.
3007
3008 2009-01-04  Steven Bosscher  <steven@gcc.gnu.org>
3009
3010         PR middle-end/38586
3011         * function.c (struct temp_slot): Move to the section of the file
3012         that deals with temp slots.  Remove field 'address'.
3013         (temp_slot_address_table): New hash table of address -> temp slot.
3014         (struct temp_slot_address_entry): New struct, items for the table.
3015         (temp_slot_address_compute_hash, temp_slot_address_hash,
3016         temp_slot_address_eq, insert_temp_slot_address): Support functions
3017         for the new table.
3018         (find_temp_slot_from_address): Rewrite to use the new hash table.
3019         (remove_unused_temp_slot_addresses): Remove addresses of temp
3020         slots that have been made available.
3021         (remove_unused_temp_slot_addresses_1): Call-back for htab_traverse,
3022         worker function for remove_unused_temp_slot_addresses.
3023         (assign_stack_temp_for_type): Don't clear the temp slot address list.
3024         Add the temp slot address to the address -> temp slot map.
3025         (update_temp_slot_address): Update via insert_temp_slot_address.
3026         (free_temp_slots): Call remove_unused_temp_slot_addresses.
3027         (pop_temp_slots): Likewise.
3028         (init_temp_slots): Allocate the address -> temp slot map, or empty
3029         the map if it is already allocated.
3030         (prepare_function_start): Initialize temp slot processing.
3031
3032 2009-01-04  Steven Bosscher  <steven@gcc.gnu.org>
3033
3034         PR middle-end/38584
3035         * cfgexpand.c (estimate_stack_frame_size): Simplify the estimate:
3036         Calculate the size of all stack vars assuming no packing of stack
3037         vars will happen, replacing a quadratic algorithm with a linear one.
3038
3039 2009-01-03  Jakub Jelinek  <jakub@redhat.com>
3040
3041         PR target/38707
3042         * expmed.c (store_bit_field_1): Don't modify op0 if movstrict insn
3043         can't be used.
3044
3045 2009-01-03  Diego Novillo  <dnovillo@google.com>
3046
3047         * doc/contrib.texi: Update contributions.
3048
3049 2009-01-03  Jakub Jelinek  <jakub@redhat.com>
3050
3051         PR c++/38705
3052         * builtins.c (fold_builtin_memory_op): Give up if either operand
3053         is volatile.  Set srctype or desttype to non-qualified version
3054         of the other type.
3055
3056         PR c/38700
3057         * builtins.c (fold_builtin_expect): Only check DECL_WEAK for VAR_DECLs
3058         and FUNCTION_DECLs.
3059
3060 2009-01-02  Kenneth Zadeck  <zadeck@naturalbridge.com>
3061
3062         PR rtl-optimization/35805
3063         * df-problems.c (df_lr_finalize): Add recursive call to resolve lr
3064         problem if fast dce is able to remove any instructions.
3065         * dce.c (dce_process_block): Fix dump message.
3066         
3067 2009-01-02  Mark Mitchell  <mark@codesourcery.com>
3068
3069         PR 33649
3070         * tree-ssa-pre.c (compute_antic): Correct loop bounds.
3071
3072 2009-01-02  Jakub Jelinek  <jakub@redhat.com>
3073
3074         PR middle-end/38690
3075         * tree-flow.h (op_code_prio, op_prio): New prototypes.
3076         * tree-pretty-print.c (op_code_prio): New function.
3077         (op_prio): No longer static.  Use op_code_prio.
3078         * gimple-pretty-print.c (dump_unary_rhs, dump_binary_rhs):
3079         Use op_prio and op_code_prio to determine if () should be
3080         printed around operand(s) or not.
3081
3082         * gimple-pretty-print.c (dump_unary_rhs, dump_binary_rhs,
3083         dump_gimple_call, dump_gimple_switch, dump_gimple_cond,
3084         dump_gimple_label, dump_gimple_try, dump_symbols, dump_gimple_phi,
3085         dump_gimple_mem_ops, dump_bb_header, dump_bb_end, pp_cfg_jump): Use
3086         pp_character instead of pp_string for single letter printing.
3087
3088 2009-01-02  Richard Sandiford  <rdsandiford@googlemail.com>
3089
3090         * doc/extend.texi: Fix '#pragma GCC option' typo.
3091
3092 2009-01-02  Richard Guenther  <rguenther@suse.de>
3093
3094         * doc/install.texi (--enable-checking): Mention different
3095         default for stage1.
3096         (--enable-stage1-checking): Document.
3097
3098 2009-01-01  Andrew Pinski  <pinskia@gmail.com>
3099
3100         PR middle-end/30142
3101         * tree-cfg.c (verify_expr): Add INDIRECT_REF case.  Change MODIFY_EXPR
3102         case to be an error.
3103
3104 2009-01-02  Ben Elliston  <bje@au.ibm.com>
3105
3106         * config/fp-bit.h (pack_d): Constify argument.
3107         * config/fp-bit.c (makenan): Constify return type. Remove casts.
3108         (isnan): Constify argument.
3109         (isinf): Likewise.
3110         (iszero): Likewise.
3111         (pack_d): Likewise.
3112         (_fpadd_parts): Constify return type.
3113         (_fpmul_parts): Likewise.
3114         (_fpdiv_parts): Likewise.
3115
3116 2009-01-01  Jakub Jelinek  <jakub@redhat.com>
3117
3118         PR c/36489
3119         * c-typeck.c (add_pending_init): Add IMPLICIT argument.  Only
3120         warn about overwriting initializer with side-effects or
3121         -Woverride-init if !IMPLICIT.
3122         (output_init_element): Likewise.  Pass IMPLICIT down to
3123         add_pending_init.
3124         (process_init_element): Add IMPLICIT argument.  Pass it down
3125         to output_init_element.
3126         (push_init_element, pop_init_level, set_designator): Adjust
3127         process_init_element callers.
3128         (set_nonincremental_init, set_nonincremental_init_from_string):
3129         Adjust add_pending_init callers.
3130         (output_pending_init_elements): Adjust output_init_element callers.
3131         * c-tree.h (process_init_element): Adjust prototype.
3132         * c-parser.c (c_parser_initelt, c_parser_initval): Adjust
3133         process_init_element callers.