summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2007-07-21 Rafael Avila de Espindola <espindola@google.com>espindola2008-07-2119-227/+246
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Makefile.in: Replace toplev.h with TOPLEV_H. * c-decl.c (merge_decls): Don't set DECL_IN_SYSTEM_HEADER. * c-lex.c (fe_file_change): Don't set in_system_header. * c-parser.c (c_token): Remove in_system_header. (c_lex_one_token): Don't set in_system_header. (c_parser_set_source_position_from_token): Don't set in_system_header. * diagnostic.c (diagnostic_report_diagnostic): Use location from diagnostic_info. (warning_at): New. * diagnostic.h (diagnostic_report_warnings_p): Add LOC argument. * flags.h (in_system_header): Remove. * function.c (saved_in_system_header): Remove. (push_cfun): Don't set in_system_header. (pop_cfun): Don't set in_system_header. (push_struct_function): Don't set in_system_header. * input.h (expanded_location): Add sysp. (in_system_header_at): New. (in_system_header): New. * toplev.c (in_system_header): Remove. * toplev.h: Include input.h (warning_at): New. * tree-cfg.c (execute_warn_function_return): Call warning_at. * tree-ssa.c (warn_uninit): Call warning_at. (warn_uninitialized_var): Update calls to warn_uninit. (warn_uninitialized_phi): Update calls to warn_uninit. * tree.c (make_node_stat): Don't set DECL_IN_SYSTEM_HEADER. (expand_location): Initialize xloc.sysp. * tree.h (DECL_IN_SYSTEM_HEADER): Use in_system_header_at. (tree_decl_with_vis): Remove in_system_header_flag. 2007-07-21 Rafael Avila de Espindola <espindola@google.com> * parser.c (cp_token): Remove in_system_header. (eof_token): Remove in_system_header. (cp_lexer_get_preprocessor_token): Don't set in_system_header. (cp_lexer_set_source_position_from_token): Don't set in_system_header. (cp_parser_member_declaration): Use in_system_header_at. * pt.c (lookup_template_class): Don't set DECL_IN_SYSTEM_HEADER. (pop_tinst_level): Don't set in_system_header. (instantiate_class_template): Don't set in_system_header. (instantiate_decl): Don't set in_system_header. (instantiate_pending_templates): Don't set in_system_header. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138031 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-21 Thomas Koenig <tkoenig@gcc.gnu.org>tkoenig2008-07-2118-33/+163
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR libfortran/36773 * intrinsics/cshift0.c (cshift0): Return early if size of array is zero. * intrinsics/eoshift0.c (eoshift0): Return early if size of return array is zero. * intrinsics/eoshift2.c (eoshift2): Likewise. * m4/eoshift1.m4 (eoshift1): Return early if size of array is zero. * m4/eoshift3.m4 (eoshift3): Likewise. * m4/eoshift2.m4 (eoshift2): Return early if size of return array is zero. * m4/eoshift4.m4 (eoshift2): Return early if size of return array is zero. * generated/cshift1_16.c: Regenerated. * generated/cshift1_4.c: Regenerated. * generated/cshift1_8.c: Regenerated. * generated/eoshift1_16.c: Regenerated. * generated/eoshift1_4.c: Regenerated. * generated/eoshift1_8.c: Regenerated. * generated/eoshift3_16.c: Regenerated. * generated/eoshift3_4.c: Regenerated. * generated/eoshift3_8.c: Regenerated. 2008-07-21 Thomas Koenig <tkoenig@gcc.gnu.org> PR libfortran/36773 * gfortran.dg/zero_sized_5.f90: New test case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138027 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>manu2008-07-2110-34/+58
| | | | | | | | | | | | | | | | | | | | | | | | * include/line-map.h (linenum_type): New typedef. (struct line_map): Use it. (SOURCE_LINE): Second arguments is a LOCATION not a LINE. (SOURCE_COLUMN): Likewise. * macro.c (_cpp_builtin_macro_text): Use linenum_type. Don't store source_location values in a variable of type linenum_type. * directives.c (struct if_stack): Use linenum_type. (strtoul_for_line): Rename as strtolinenum. (do_line): Use linenum_type. (do_linemarker): Use linenum_type and strtolinenum. (_cpp_do_file_change): Use linenum_t. * line-map.c (linemap_add): Likewise. (linemap_line_start): Likewise. * traditional.c (struct fun_macro): 'line' is a source_location. * errors.c (print_location): Use linenum_type. * directives-only.c (_cpp_preprocess_dir_only): Likewise. * internal.h (CPP_INCREMENT_LINE): Likewise. * lex.c (_cpp_skip_block_comment): Use source_location. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138026 138bc75d-0d04-0410-961f-82ee72b054a4
* /cppaolo2008-07-219-23/+75
| | | | | | | | | | | | | | | | | | | | | | | 2008-07-21 Paolo Carlini <paolo.carlini@oracle.com> PR c++/36870 * semantics.c (classtype_has_nothrow_assign_or_copy_p): Use TYPE_NOTHROW_P, not TREE_NOTHROW. (trait_expr_value): Likewise. /testsuite 2008-07-21 Paolo Carlini <paolo.carlini@oracle.com> PR c++/36870 * g++.dg/ext/has_nothrow_assign_odr.C: New. * g++.dg/ext/has_nothrow_copy_odr.C: Likewise. * g++.dg/ext/has_nothrow_constructor_odr.C: Likewise. * g++.dg/ext/has_nothrow_assign.C: Adjust. * g++.dg/ext/has_nothrow_copy.C: Likewise. * g++.dg/ext/has_nothrow_constructor.C: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138024 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-21 Andreas Krebbel <krebbel1@de.ibm.com>krebbel2008-07-214-8/+33
| | | | | | | | | | | | | | | PR target/36822 * recog.c (asm_operand_ok): Change the order of the extra memory constraint checks. 2008-07-17 Andreas Krebbel <krebbel1@de.ibm.com> PR target/36822 * gcc.target/s390/pr36822.c: New testcase. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138022 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-20 Jerry DeLisle <jvdelisle@gcc.gnu.org>jvdelisle2008-07-212-25/+34
| | | | | | | | | PR fortran/36857 * io/write_float.def: Comment out locale dependent code and fix general comments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138021 138bc75d-0d04-0410-961f-82ee72b054a4
* PR middle-end/36143hp2008-07-212-1/+5
| | | | | | | * g++.dg/tree-ssa/pr19637.C: XFAIL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138020 138bc75d-0d04-0410-961f-82ee72b054a4
* PR rtl-optimization/33642hp2008-07-213-4/+8
| | | | | | | | * gcc.c-torture/compile/pr11832.c: Skip for CRIS. * gcc.c-torture/compile/pr33009.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138019 138bc75d-0d04-0410-961f-82ee72b054a4
* PR middle-end/36509hp2008-07-212-2/+7
| | | | | | | * gcc.dg/Wstrict-aliasing-float-ptr-int-obj.c: XFAIL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138018 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2008-07-211-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138016 138bc75d-0d04-0410-961f-82ee72b054a4
* * gnathtml.pl: New file.charlet2008-07-202-0/+1119
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138013 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-20 Andrew Pinski <andrew_pinski@playstation.sony.com>pinskia2008-07-204-1/+79
| | | | | | | | | | | | | | | | PR tree-opt/36879 * tree-switch-conversion.c (build_one_array): Call varpool_mark_needed_node and varpool_finalize_decl instead of assemble_variable. 2008-07-20 Andrew Pinski <andrew_pinski@playstation.sony.com> PR tree-opt/36879 * gcc.c-torture/execute/20080719-1.c: New testcase. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138012 138bc75d-0d04-0410-961f-82ee72b054a4
* * cgraph.c (cgraph_add_new_function): Do early local passes.hubicka2008-07-209-25/+133
| | | | | | | | | | | | | | | | | | | | * tree-nrv.c (gate_pass_return_slot): New gate. (pass_nrv): Add the gate. * tree-ssa-coalese.c (hash_ssa_name_by_var, eq_ssa_name_by_var): New functions. (coalesce_ssa_name): Coalesce SSA names. * tree-ssa-live.c (remove_unused_locals): Be more conservative when not optimizing so unused user vars remains visible. * common.opt (flag_tree_ter): Always enable by default. * tree-ssa-ter.c: Include flags.h (is_replaceable_p): Check that locations match; when aliasing is missing be conservative about loads. * tree-optimize.c (gate_init_datastructures): Remove. (pass_init_datastructures): New. * passes.c: Reorder passes so we always go into SSA. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138010 138bc75d-0d04-0410-961f-82ee72b054a4
* * doc/extend.texi (flatten attribute): Remove note about unit-at-a-timehubicka2008-07-206-55/+54
| | | | | | | | | | | | | | | | | | | | * doc/invoke.texi (--combine): Likewise. (-finline-functions-called-once): Update levels when enabled. (-funit-at-a-time): Document new behaviour. (-ftoplevel-reorder): Document that it is enabled -O0 and imply -fno-section-anchors when disabled explicitly. (inline params): They are not ignored now. (precompiled headers): Remove unit-at-a-time as being incompatible. * opts.c (decode_options): Handle unit-at-a-time as alias; imply -fno-section-anchors when toplevel reorder is disabled explicitly. * common.opt (ftoplevel-reorder): Set default value to 2. (funit-at-a-time): Set default value to 1. * config/rs6000/rs6000.c (optimization_options): Set section anchors to 2. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138009 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.dg/tree-ssa/data-dep-1.c: XFAIL.hp2008-07-202-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138007 138bc75d-0d04-0410-961f-82ee72b054a4
* * builtins.c (expand_builtin_int_roundingfn,hubicka2008-07-202-12/+16
| | | | | | | | | expand_builtin_int_roundingfn_2): Do not take subtarget argument; it is not useful. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138006 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-20 Daniel Berlin <dberlin@dberlin.org>dberlin2008-07-209-16/+27
| | | | | | | | | | | | | | | * gcc.dg/tree-ssa/ssa-fre-7.c: XFAIL. * gcc.dg/tree-ssa/ssa-fre-8.c: Ditto. * gcc.dg/tree-ssa/ssa-fre-9.c: Ditto. * gcc.dg/tree-ssa/ssa-fre-13.c: Ditto. * gcc.dg/tree-ssa/ssa-fre-14.c: Ditto. * gcc.dg/tree-ssa/ssa-fre-17.c: Ditto. * gcc.dg/tree-ssa/ssa-pre-15.c: Ditto. * gcc.dg/tree-ssa/loadpre1.c: PASS. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138005 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2008-07-201-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137995 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-19 Richard Guenther <rguenther@suse.de>andreast2008-07-194-1/+38
| | | | | | | | | | | | PR bootstrap/36864 * tree-ssa-sccvn.h (get_constant_value_id): Declare. * tree-ssa-sccvn.c (get_constant_value_id): New function. * tree-ssa-pre.c (get_expr_value_id): For newly created constant value-ids make sure to add the expression to its expression-set. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137991 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-19 Paolo Carlini <paolo.carlini@oracle.com>paolo2008-07-195-18/+39
| | | | | | | | | | | | | | | | * include/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp (assert_node_consistent): Avoid ambiguous else warning. * include/ext/pb_ds/detail/debug_map_base.hpp: Include <iostream>. * include/bits/c++config: In debug-mode (and parallel-mode) set _GLIBCXX_EXTERN_TEMPLATE to -1, not 0, thus disabling extern templates only for basic_string (per libstdc++/21674). * include/bits/basic_string.tcc: Use extern templates when _GLIBCXX_EXTERN_TEMPLATE > 0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137990 138bc75d-0d04-0410-961f-82ee72b054a4
* PR middle-end/36877jakub2008-07-194-0/+29
| | | | | | | | | | * omp-low.c (expand_omp_atomic_fetch_op): Make sure the return value of the builtin is ignored. * gcc.dg/gomp/atomic-11.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137989 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-19 Tobias Burnus <burnus@net-b.de>burnus2008-07-195-7/+47
| | | | | | | | | | | | | | | | PR fortran/36795 * matchexp.c (gfc_get_parentheses): Remove obsolete workaround, which caused the generation of wrong code. 2008-07-19 Tobias Burnus <burnus@net-b.de> PR fortran/36795 * char_expr_1.f90: New. * char_expr_2.f90: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137986 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-19 Tobias Burnus <burnus@net-b.de>burnus2008-07-192-7/+17
| | | | | | | | | | | PR fortran/36342 * scanner.c (load_file): Add argument to destinguish between true filename and displayed filename. (include_line,gfc_new_file): Adapt accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137985 138bc75d-0d04-0410-961f-82ee72b054a4
* * doc/tm.texi (MALLOC_ABI_ALIGNMENT): New macro. Alignment, in bits,hainque2008-07-1911-5/+140
| | | | | | | | | | | | | | | | | | a C conformant malloc implementation has to provide. * defaults.h (MALLOC_ABI_ALIGNMENT): Default to BITS_PER_WORD. ada/ * targtyps.c (get_target_default_allocator_alignment): Use it. testsuite/ * gcc.dg/mallign.c: New test. * gnat.dg/allocator_maxalign1.adb: New test. * gnat.dg/test_allocator_maxalign2.adb: Main caller for ... * gnat.dg/allocator_maxalign2.ad[bs]: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137984 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-19 Tobias Burnus <burnus@net-b.de>burnus2008-07-195-9/+118
| | | | | | | | | | | | | | | * check.c (gfc_check_cshift,gfc_check_eoshift,gfc_check_unpack): Add rank checks for cshift's shift and eoshift's shift and boundary args. (gfc_check_unpack): Add rank and shape tests for unpack. 2008-07-19 Tobias Burnus <burnus@net-b.de> * gfortran.dg/intrinsic_argument_conformance_2.f90: New. * gfortran.dg/zero_sized_1.f90: Fix conformance bugs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137983 138bc75d-0d04-0410-961f-82ee72b054a4
* * gfortran.h (new): Remove macro.ghazi2008-07-1919-217/+244
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * array.c (gfc_append_constructor, match_array_list, gfc_match_array_constructor): Likewise. * bbt.c (insert, gfc_insert_bbt): Likewise. * decl.c (var_element, top_var_list, top_val_list, gfc_match_data, get_proc_name): Likewise. * expr.c (gfc_copy_actual_arglist): Likewise. * interface.c (compare_actual_formal, check_new_interface, gfc_add_interface): Likewise. * intrinsic.c gfc_convert_type_warn, gfc_convert_chartype): Likewise. * io.c (match_io_iterator, match_io_list): Likewise. * match.c (match_forall_header): Likewise. * matchexp.c (build_node): Likewise. * module.c (gfc_match_use): Likewise. * scanner.c (load_file): Likewise. * st.c (gfc_append_code): Likewise. * symbol.c (save_symbol_data, gfc_get_sym_tree, gfc_undo_symbols, gfc_commit_symbols): Likewise. * trans-common.c (build_field): Likewise. * trans-decl.c (gfc_finish_var_decl): Likewise. * trans-expr.c (gfc_free_interface_mapping, gfc_get_interface_mapping_charlen, gfc_add_interface_mapping, gfc_finish_interface_mapping, gfc_apply_interface_mapping_to_expr): Likewise. * trans.h (gfc_interface_sym_mapping): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137982 138bc75d-0d04-0410-961f-82ee72b054a4
* * gfortran.h (operator): Remove macro.ghazi2008-07-1916-177/+206
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (gfc_namespace, gfc_expr): Avoid C++ keywords. * arith.c (eval_intrinsic, eval_intrinsic_f2, eval_intrinsic_f3): Likewise. * decl.c (access_attr_decl): Likewise. * dependency.c (gfc_dep_compare_expr): Likewise. * dump-parse-tree.c (show_expr, show_uop, show_namespace): Likewise. * expr.c (gfc_copy_expr, gfc_type_convert_binary, simplify_intrinsic_op, check_intrinsic_op): Likewise. * interface.c (fold_unary, gfc_match_generic_spec, gfc_match_interface, gfc_match_end_interface, check_operator_interface, check_uop_interfaces, gfc_check_interfaces, gfc_extend_expr, gfc_extend_assign, gfc_add_interface, gfc_current_interface_head, gfc_set_current_interface_head): Likewise. * iresolve.c (gfc_resolve_dot_product, gfc_resolve_matmul): Likewise. * matchexp.c (gfc_get_parentheses, build_node): Likewise. * module.c (gfc_use_rename, gfc_match_use, find_use_name_n, number_use_names, mio_expr, load_operator_interfaces, read_module, write_operator, write_module): Likewise. * openmp.c (resolve_omp_atomic): Likewise. * resolve.c (resolve_operator, gfc_resolve_character_operator, gfc_resolve_uops): Likewise. * symbol.c (free_uop_tree, gfc_free_namespace): Likewise. * trans-expr.c (gfc_conv_expr_op): Likewise. * trans-openmp.c (gfc_trans_omp_atomic): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137981 138bc75d-0d04-0410-961f-82ee72b054a4
* * gfortran.h (protected): Remove macro.ghazi2008-07-1912-45/+62
| | | | | | | | | | | | | | | | | | | | | | * dump-parse-tree.c (show_attr): Avoid C++ keywords. * expr.c (gfc_check_pointer_assign): Likewise. * interface.c (compare_parameter_protected): Likewise. * intrinsic.c (enum class, add_sym, add_sym_0, add_sym_1, add_sym_1s, add_sym_1m, add_sym_2, add_sym_2s, add_sym_3, add_sym_3ml, add_sym_3red, add_sym_3s, add_sym_4, add_sym_4s, add_sym_5s): Likewise. * match.c (gfc_match_assignment, gfc_match_pointer_assignment): Likewise. * module.c (mio_symbol_attribute): Likewise. * primary.c (match_variable): Likewise. * resolve.c (resolve_equivalence): Likewise. * symbol.c (check_conflict, gfc_add_protected, gfc_copy_attr): Likewise. * trans-types.c (gfc_get_array_type_bounds): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137980 138bc75d-0d04-0410-961f-82ee72b054a4
* PR target/36780jsm282008-07-194-27/+20
| | | | | | | | | | | | | | | | | | | PR target/36827 * reload.c (find_reloads_subreg_address): Only reload address if reloaded == 0, not for reloaded != 1. Revert: 2008-07-16 Joseph Myers <joseph@codesourcery.com> * config/m32c/m32c.c (BIG_FB_ADJ): Move definition earlier. (m32c_legitimate_address_p): Handle "++rii" addresses created by m32c_legitimize_reload_address. 2008-07-15 Kaz Kojima <kkojima@gcc.gnu.org> * config/sh/sh.h (GO_IF_LEGITIMATE_ADDRESS): Allow (plus (plus (reg) (const_int)) (const_int)) when reload_in_progress. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137976 138bc75d-0d04-0410-961f-82ee72b054a4
* * dwarf2out.c (add_subscript_info): New explicit COLLAPSE_Phainque2008-07-192-35/+42
| | | | | | | | | | | | argument, saying whether nested array are to be collapsed into a single array type DIE with multiple subscripts. (gen_array_type_die): Factorize comments about the MIPS_DEBUG_INFO issues, centralize the nested array types collapsing control and disable the transformation for Ada. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137975 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2008-07-191-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137973 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-18 Kris Van Hees <kris.van.hees@oracle.com>kvanhees2008-07-185-154/+14
| | | | | | | | | | | * g++.dg/ext/utf-array.C: Fix broken merge/checkin. * g++.dg/ext/utf-array-short-wchar.C: Idem * gcc.dg/utf-array.c: Idem * gcc.dg/utf-array-short-wchar.c: Idem git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137970 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-18 Paolo Carlini <paolo.carlini@oracle.com>paolo2008-07-181-1/+0
| | | | | | | Remove spurious blank line from ChangeLog. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137969 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.dg/fshort-wchar.c: Use -Wl,--no-wchar-size-warning onjsm282008-07-182-0/+6
| | | | | | | arm*-*-*eabi. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137968 138bc75d-0d04-0410-961f-82ee72b054a4
* PR target/36786uros2008-07-185-53/+130
| | | | | | | | | | | | | | | | | | | | * config/i386/i386.md (x86_64_shift_adj_1): Rename from x86_64_shift_adj. (x86_64_shift_adj_2): New expander. (x86_64_shift_adj_3): Ditto. * config/i386/i386.c (ix86_split_ashr): Use gen_x86_64_shift_adj_3 to split TImode operands. (ix86_split_ashl): Use gen_x86_64_shift_adj_2 to split TImode operands. (ix86_split_lshr): Ditto. testsuite/ChangeLog: PR target/36786 * gcc.target/i386/pr36786.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137967 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-18 Dodji Seketeli <dseketel@redhat.com>dodji2008-07-184-1/+34
| | | | | | | | | | PR c++/36407 * call.c (convert_like_real): Don't take the error code path when a rvalue or base conversion has the bad_p field set. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137966 138bc75d-0d04-0410-961f-82ee72b054a4
* gcc/ChangeLog:kvanhees2008-07-1818-46/+502
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-07-16 Kris Van Hees <kris.van.hees@oracle.com> * c-common.c (c_stddef_cpp_builtins): Define __CHAR16_TYPE__ and __CHAR32_TYPE__. * c-typeck.c (digest_init): Support char16_t and char32_t. (set_nonincremental_init_from_string): Idem. gcc/cp/ChangeLog: 2008-07-16 Kris Van Hees <kris.van.hees@oracle.com> * rtti.c (emit_support_tinfos): Add char16_type_node and char32_type_node. * typeck2.c (digest_init): Support char16_t and char32_t. gcc/testsuite/ChangeLog: 2008-07-16 Kris Van Hees <kris.van.hees@oracle.com> Tests for char16_t and char32_t support. * g++.dg/ext/utf-array.C: New * g++.dg/ext/utf-array-short-wchar.C: New * g++.dg/ext/utf-rtti.C: New * g++.dg/ext/utf-type.c: New * gcc.dg/utf-array.c: New * gcc.dg/utf-array-short-wchar.c: New * gcc.dg/utf-inc-init.c: New * gcc.dg/utf-type.c: New libstdc++-v3/ChangeLog: 2008-07-16 Kris Van Hees <kris.van.hees@oracle.com> Holger Hopp <holger.hopp@sap.com> * config/abi/pre/gnu.ver: Support char16_t and char32_t. * testsuite/util/testsuite_abi.cc (check_version): Add CXXABI_1.3.3 to known_versions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137965 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-16 Paolo Carlini <paolo.carlini@oracle.com>paolo2008-07-181-0/+7
| | | | | | | | | | * include/debug/vector (insert(iterator, _Tp&&), push_back(_Tp&&)): Enable only when _Tp != bool. * testsuite/25_algorithms/heap/1.cc: Avoid unused variable warnings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137963 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-16 Paolo Carlini <paolo.carlini@oracle.com>paolo2008-07-182-6/+12
| | | | | | | | | | * include/debug/vector (insert(iterator, _Tp&&), push_back(_Tp&&)): Enable only when _Tp != bool. * testsuite/25_algorithms/heap/1.cc: Avoid unused variable warnings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137962 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-18 Paolo Carlini <paolo.carlini@oracle.com>paolo2008-07-182-1/+6
| | | | | | | | * testsuite/lib/libstdc++.exp (check_v3_target_c_std): Avoid unused variable warnings leading to spurious fails of the test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137961 138bc75d-0d04-0410-961f-82ee72b054a4
* * arith.c (eval_type_intrinsic0): Avoid C++ keywords.ghazi2008-07-183-7/+19
| | | | | | | | * gfortran.h (try, protected, operator, new): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137960 138bc75d-0d04-0410-961f-82ee72b054a4
* * cvt.c (convert_to_void): Avoid C++ keywords.ghazi2008-07-1811-186/+206
| | | | | | | | | | | | | | | | | | | | | | | * decl.c (walk_namespaces_r, wrapup_globals_for_namespace): Likewise. * friend.c (is_friend): Likewise. * init.c (perform_member_init): Likewise. * mangle.c (write_template_prefix, write_template_template_param): Likewise. * name-lookup.c (do_namespace_alias, do_using_directive, parse_using_directive, ambiguous_decl, arg_assoc): Likewise. * parser.c (cp_parser_template_id, cp_parser_namespace_definition, cp_parser_objc_typename, cp_parser_objc_method_keyword_params): Likewise. * pt.c (is_specialization_of_friend, lookup_template_class, push_tinst_level, instantiate_class_template, tsubst_copy_and_build): Likewise. * tree.c (add_stmt_to_compound): Likewise. * typeck.c (finish_class_member_access_expr): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137959 138bc75d-0d04-0410-961f-82ee72b054a4
* * objc-act.c (objc_start_class_interface,ghazi2008-07-182-88/+98
| | | | | | | | | | | | | objc_start_category_interface, objc_start_class_implementation, objc_start_category_implementation, objc_build_struct, generate_static_references, build_private_template, lookup_category, objc_add_method, add_category, add_instance_variable, objc_is_public, conforms_to_protocol, start_class, continue_class, finish_class): Avoid C++ keywords. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137958 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-18 Matthias Klose <doko@ubuntu.com> doko2008-07-182-1/+5
| | | | | | | * Makefile.in: Ignore missing ../boehm-gc/threads.mk. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137956 138bc75d-0d04-0410-961f-82ee72b054a4
* gcc/hjl2008-07-185-3/+73
| | | | | | | | | | | | | | | | | | | 2008-07-18 H.J. Lu <hongjiu.lu@intel.com> PR middle-end/36859 * builtins.c (std_gimplify_va_arg_expr): Limit alignment to PREFERRED_STACK_BOUNDARY. * config/i386/i386.c (ix86_gimplify_va_arg): Likewise. testsuite/ 2008-07-18 H.J. Lu <hongjiu.lu@intel.com> PR middle-end/36859 * gcc.target/i386/vararg-2.c: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137955 138bc75d-0d04-0410-961f-82ee72b054a4
* gcc/hjl2008-07-184-2/+44
| | | | | | | | | | | | | | | | | 2008-07-18 H.J. Lu <hongjiu.lu@intel.com> PR middle-end/36858 * function.c (locate_and_pad_parm): Cap boundary earlier. testsuite/ 2008-07-18 H.J. Lu <hongjiu.lu@intel.com> PR middle-end/36858 * gcc.target/i386/vararg-1.c: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137954 138bc75d-0d04-0410-961f-82ee72b054a4
* 2008-07-18 Tobias Burnus <burnus@net-b.de>burnus2008-07-182-4/+8
| | | | | | | | * gfortran.dg/parameter_array_init_4.f90: Silence pedantic warning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137950 138bc75d-0d04-0410-961f-82ee72b054a4
* The new file gfortran.dg/array_4.f90 was missing from the commit 137910burnus2008-07-181-0/+12
| | | | | | | | | 2008-07-17 Tobias Burnus <burnus@net-b.de> PR fortran/36824 * gfortran.dg/array_4.f90: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137949 138bc75d-0d04-0410-961f-82ee72b054a4
* - checkin threads.mk.in.doko2008-07-181-0/+3
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137941 138bc75d-0d04-0410-961f-82ee72b054a4
* boehm-gc/doko2008-07-186-7/+24
| | | | | | | | | | | | | | | | | | 2008-07-18 Matthias Klose <doko@ubuntu.com> * configure.ac (AC_CONFIG_FILES): Add threads.mk. * threads.mk.in: New. * Makefile.in, configure: Regenerate. libobjc/ 2008-07-18 Matthias Klose <doko@ubuntu.com> * Makefile.in: Include ../boehm-gc/threads.mk. (OBJC_BOEHM_GC_LIBS): Define, (libobjc_gc$(libsuffix).la): Use it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137939 138bc75d-0d04-0410-961f-82ee72b054a4