summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* gcc:zack2003-08-267-105/+141
| | | | | | | | | | | | | | | | | | | | * config.gcc (hppa*-*-hpux11*, ia64*-*-hpux*): Remove commented-out logic to use DCE threads (if present), add support for POSIX threads. * config/ia64/hpux.h: Define CPP_SPEC to set appropriate #defines for -pthread. Add -lpthread to LIB_SPEC when -pthread. In both cases take -mt as a synonym for -pthread for acc compatibility. Define GTHREAD_USE_WEAK to 0. * config/pa/pa-hpux11.h: Likewise for CPP_SPEC and LIB_SPEC. Remove old logic for DCE threads from LIB_SPEC. * config/pa/pa64-hpux.h: Define GTHREAD_USE_WEAK to 0. libstdc++-v3: * config/os/hpux/os_defines.h: Unconditionally define _GLIBCXX_GTHREAD_USE_WEAK to 0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70797 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2003-08-262-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70794 138bc75d-0d04-0410-961f-82ee72b054a4
* * builtins.c (expand_builtin_mathfn): Rearrange so that we onlysayle2003-08-262-32/+83
| | | | | | | | | return 0 for invalid argument types. Instead drop through to a call of expand_call at the bottom of function. If op is SQRT, try attaching a SQRT rtx as the REQ_EQUAL note of the libcall. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70792 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.dg/compat/vector-1_x.c: Compile with -w.janis2003-08-255-0/+15
| | | | | | | | | * gcc.dg/compat/vector-1_y.c: Ditto. * gcc.dg/compat/vector-2_x.c: Ditto. * gcc.dg/compat/vector-2_y.c: Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70791 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/ia64/ia64.c (ia64_expand_tls_address): Properly truncaterth2003-08-252-26/+31
| | | | | | | result when op0 is SImode. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70790 138bc75d-0d04-0410-961f-82ee72b054a4
* * fixinc/inclhack.def (svr4_sighandler_type): New fix, portedneroden2003-08-254-5/+76
| | | | | | | | | from fixinc.svr4. * fixinc/fixincl.x: Regenerate. * fixinc/tests/base/sys/signal.h: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70786 138bc75d-0d04-0410-961f-82ee72b054a4
* * combine.c (simplify_comparison): Re-enable widening of comparisonsuweigand2003-08-252-5/+12
| | | | | | | with non-paradoxical subregs of non-REG expressions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70785 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix thinkogdr2003-08-251-1/+0
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70783 138bc75d-0d04-0410-961f-82ee72b054a4
* * cxx-pretty-print.c (pp_cxx_class_name): Remove unused function.rth2003-08-252-6/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70782 138bc75d-0d04-0410-961f-82ee72b054a4
* * combine.c (distribute_notes): Handle REG_ALWAYS_RETURN.uweigand2003-08-254-0/+19
| | | | | | | * gcc.dg/20030702-1.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70779 138bc75d-0d04-0410-961f-82ee72b054a4
* * combine.c (combine_simplify_rtx): Fix RTL sharing bug.uweigand2003-08-252-3/+9
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70778 138bc75d-0d04-0410-961f-82ee72b054a4
* * pretty-print.h (pp_maybe_newline_and_indent): New macro.gdr2003-08-2510-873/+2173
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * c-pretty-print.h (c_pretty_printer): Now typedef to the structure. Be consistent with pretty-print.h abd cxx-pretty-print.h (struct c_pretty_print_info): Document. Add new fields. (pp_type_specifier_seq): Rename from pp_c_type_specifier. (pp_direct_abstract_declarator): New macro. (pp_ptr_operator): Likewise. (pp_simple_type_specifier): Likewise. (pp_expression): Likewise. (pp_parameter_list): Rename from pp_parameter_declaration. * c-pretty-print.c (pp_c_whitespace): Now a function. (pp_c_left_paren): Likewise. (pp_c_right_paren): Likewise. (pp_c_dot): Likewise. (pp_c_ampersand): Likewise. (pp_c_arrow): Likewise. (pp_c_semicolon): Likewise. (pp_c_type_cast): New function. (pp_c_space_for_pointer_operator): Likewise. (pp_c_call_argument_list): Likewise. (pp_c_cv_qualifier): Adjust prototype. (pp_c_type_qualifier_list): Likewise. (pp_c_pointer): Likewise. Handle REFERENCE_TYPE here. (pp_c_type_specifier): Rename from pp_c_simple_type_specifier. Adjust to follow standard grammar. (pp_c_specifier_qualifier_list): Adjusr prototype. Handle REFERENCE_TYPE. Tidy. (pp_c_parameter_type_list): Adjust prototype. Tidy. (pp_c_parameter_declaration): Remove. (pp_c_abstract_declarator): Adjust prototype. (pp_c_direct_abstract_declarator): Likewise. (pp_c_type_id): Likewise. (pp_c_storage_class_specifier): Likewise. (pp_c_function_specifier): Likewise. (pp_c_declaration_specifiers): Likewise. (pp_c_direct_declarator): Likewise. (pp_c_declarator): Likewise. (pp_c_declarator): Likewise. (pp_c_declaration): Likewise. (pp_c_attributes): Likewise. Tidy. (pp_c_function_definition): Adjust prototype. (pp_c_char): Likewise. (pp_c_string_literal): Likewise. (pp_c_integer_constant): Likewise. (pp_c_character_constant): Likewise. (pp_c_bool_constant): Likewise. (pp_c_enumeration_constant): Likewise. (pp_c_floating_constant): Likewise. (pp_c_constant): Likewise. (pp_c_identifier): Likewise. (pp_c_primary_expression): Likewise. Remove TARGET_EXPR case. Tidy. (pp_c_initializer): Adjust prototype. (pp_c_init_declarator): Likewise. (pp_c_initializer_list): Likewise. (pp_c_id_expression): Likewise. (pp_c_postfix_expression): Likewise. (pp_c_expression_list): Likewise. (pp_c_unary_expression): Likewise. (pp_c_cast_expression): Likewise. (pp_c_multiplicative_expression): Likewise. (pp_c_additive_expression): Likewise. (pp_c_shift_expression): Likewise. (pp_c_relational_expression): Likewise. (pp_c_equality_expression): Likewise. (pp_c_and_expression): Likewise. (pp_c_exclusive_or_expression): Likewise. (pp_c_inclusive_or_expression): Likewise. (pp_c_logical_and_expression): Likewise. (pp_c_logical_or_expression): Likewise. (pp_c_conditional_expression): Likewise. (pp_c_assignment_expression): Likewise. (pp_c_expression): Likewise. Tidy. (pp_c_statement): Likewise. Document. (pp_c_pretty_printer_init): Adjust prototype. Tidy. * c-lang.c (c_initialize_diagnostics): Update. * c-common.h (strip_pointer_operator): Declare. * c-common.c (strip_pointer_operator): Define. cp/ * cxx-pretty-print.h (pp_cxx_flag_default_argument): New flag. (cxx_pretty_printer): Adjust base type. (pp_cxx_function_specifier): Declare. * cxx-pretty-print.c (pp_cxx_whitespace): New macro. (pp_cxx_left_paren): Likewise. (pp_cxx_right_paren): Likewise. (pp_cxx_dot): Likewise. (pp_cxx_arrow): Likewise. (pp_cxx_semicolon): Likewise. (pp_cxx_identifier): Likewise. (pp_cxx_cv_qualifier_seq): Likewise. (pp_cxx_storage_class_specifier): Likewise. (pp_cxx_expression_list): Likewise. (pp_cxx_space_for_pointer_operator): Likewise. (pp_cxx_init_declarator): Likewise. (pp_cxx_call_argument_list): Likewise. (pp_cxx_nonconsecutive_character): Tidy. (pp_cxx_conversion_function_id): New function. (pp_cxx_template_id): Likewise. (pp_cxx_class_name): Likewise. (pp_cxx_template_keyword_if_needed): Likewise. (pp_cxx_nested_name_specifier): Likewise. (pp_cxx_unqualified_id): Tidy (pp_cxx_qualified_id): Handle more nodes. (pp_cxx_primary_expression): Tidy. (pp_cxx_postfix_expression): Likewise. (pp_cxx_new_expression): Tidy. (pp_cxx_delete_expression): Likewise. (pp_cxx_cast_expression): New function. (pp_cxx_pm_expression): Tidy. (pp_cxx_conditional_expression): Likewise. (pp_cxx_assignment_operator): New function. (pp_cxx_assignment_expression): Tidy. (pp_cxx_expression): New function. (pp_cxx_function_specifier): Likewise. (pp_cxx_decl_specifier_seq): Likewise. (pp_cxx_simple_type_specifier): Tidy. (pp_cxx_type_specifier_seq): Likewise. (pp_cxx_ptr_operator): New function. (pp_cxx_implicit_parameter_type): Likewise. (pp_cxx_parameter_declaration): Tidy. (pp_cxx_parameter_declaration_clause): New function. (pp_cxx_exception_specification): Likewise. (pp_cxx_direct_declarator): Tidy. (pp_cxx_declarator): Likewise. (pp_cxx_ctor_initializer): New function. (pp_cxx_function_definition): Likewise. (pp_cxx_abstract_declarator): Tidy. (pp_cxx_direct_abstract_declarator): Likewise. (pp_cxx_type_id): Likewise. (pp_cxx_exception_declaration): New function. (pp_cxx_statement): Likewise. (pp_cxx_simple_declaration): Likewise. (pp_cxx_template_parameter_list): Likewise. (pp_cxx_template_parameter): Likewise. (pp_cxx_template_declaration): Likewise. (pp_cxx_explicit_specialization): Likewise. (pp_cxx_explicit_instantiation): Likewise. (pp_cxx_declaration): Tidy. (pp_cxx_pretty_printer_init): Initialize more fields. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70777 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.am: added gnu/awt/xlib/XOffScreenImage.java.sgilbertson2003-08-2514-108/+442
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Makefile.in: re-generated. * gnu/awt/j2d/IntegerGraphicsState.java (ScreenCoupledImage): new interface. (drawImage): detect ScreenCoupledImage instances. * gnu/awt/xlib/XCanvasPeer.java (createImage) implemented. * gnu/awt/xlib/XEventLoop.java (createEvent): re-formatted, and rearranged to avoid null pointer. * gnu/awt/xlib/XGraphics.java (drawImage): added XOffScreenImage handling. * gnu/awt/xlib/XOffScreenImage.java: new file. * gnu/gcj/xlib/Drawable.java (getDepth): new native method. * gnu/gcj/xlib/GC.java (copyArea): new native method. * gnu/gcj/xlib/XAnyEvent.java (TYPE_KEY_PRESS): new constant. (TYPE_KEY_RELEASE): new constant. (TYPE_MOTION_NOTIFY): new constant. (TYPE_ENTER_NOTIFY): new constant. (TYPE_LEAVE_NOTIFY): new constant. (TYPE_FOCUS_IN): new constant. (TYPE_FOCUS_OUT): new constant. (TYPE_KEYMAP_NOTIFY): new constant. (TYPE_GRAPHICS_EXPOSE): new constant. (TYPE_NO_EXPOSE): new constant. (TYPE_VISIBILITY_NOTIFY): new constant. (TYPE_CREATE_NOTIFY): new constant. (TYPE_DESTROY_NOTIFY): new constant. (TYPE_MAP_REQUEST): new constant. (TYPE_CONFIGURE_REQUEST): new constant. (TYPE_GRAVITY_NOTIFY): new constant. (TYPE_RESIZE_REQUEST): new constant. (TYPE_CIRCULATE_NOTIFY): new constant. (TYPE_CIRCULATE_REQUEST): new constant. (TYPE_PROPERTY_NOTIFY): new constant. (TYPE_SELECTION_CLEAR): new constant. (TYPE_SELECTION_REQUEST): new constant. (TYPE_SELECTION_NOTIFY): new constant. (TYPE_COLORMAP_NOTIFY): new constant. (TYPE_MAPPING_NOTIFY): new constant. * gnu/gcj/xlib/natDrawable.cc (getDepth): new method. * gnu/gcj/xlib/natGC.cc (copyArea): new method * java/awt/Component.java (createImage): changed to use peer method. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70776 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c++/8795mmitchel2003-08-251-15/+33
| | | | | | | | | | | * tree.h (build_method_type_directly): Declare. * c-common.c (handle_vector_size_attributes): Handle METHOD_TYPEs. (vector_size_helper): Likewise. * tree.c (build_method_type_directly): New function. (build_method_type): Use it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70774 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c++/8795mmitchel2003-08-2514-77/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tree.h (build_method_type_directly): Declare. * c-common.c (handle_vector_size_attributes): Handle METHOD_TYPEs. (vector_size_helper): Likewise. * tree.c (build_method_type_directly): New function. (build_method_type): Use it. PR c++/8795 * cp-tree.h (build_cplus_method_type): Remove. * call.c (standard_conversion): Use build_method_type_directly instead of build_cplus_method_type. * class.c (build_clone): Likewise. (adjust_clone_args): Likewise. * decl.c (build_ptrmem_type): Likewise. (grokdeclarator): Likewise. (check_function_type): Likewise. * decl2.c (grok_method_quals): Likewise. (maybe_retrofit_in_chrg): Likewise. * pt.c (copy_default_args_to_explicit_spec): Likewise. (tsubst_function_type): Likewise. (tsubst): Likewise. * tree.c (build_cplus_method_type): Remove. * typeck.c (merge_types): Use build_method_type_directly. PR c++/8795 * g++.dg/ext/altivec-1.C: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70773 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/i386.i386.c (ix86_return_in_memory): Reformat. Return truerth2003-08-254-19/+64
| | | | | | | | | for 16-byte vector modes if sse not enabled; warn for abi change. (ix86_value_regno): Only return xmm0 for 16-byte vector types. * g++.dg/eh/simd-2.C: Add -w for x86. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70771 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2003-08-252-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70766 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc_release (build_sources): Create/update the LAST_UPDATED filegerald2003-08-242-1/+8
| | | | | | | in the source directory with information how sources were obtained. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70762 138bc75d-0d04-0410-961f-82ee72b054a4
* * rtlanal.c (may_trap_p): Simplify an integer comparison.kazu2003-08-242-3/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70761 138bc75d-0d04-0410-961f-82ee72b054a4
* * fixinc/inclhack.def (AAB_svr4_replace_byteorder): Enhanceneroden2003-08-243-6/+19
| | | | | | | | | comment. Enable for DYNIX/ptx systems (when they switch to regular fixincludes). * fixinc/fixincl.x: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70760 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-23 Jason Eckhardt <jle@rice.edu>jle2003-08-243-1/+11
| | | | | | | | * config/i860/t-i860: New. * config.gcc (i860-*-sysv4*): Add t-i860 to tmake_file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70759 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2003-08-242-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70756 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-decl.c (pushdecl): Only put decls which finish_struct will dojakub2003-08-234-3/+47
| | | | | | | | | | | something about onto incomplete chain. (finish_struct): If not removing type from incomplete list, update prev. * gcc.dg/20030815-1.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70752 138bc75d-0d04-0410-961f-82ee72b054a4
* PR target/11369hubicka2003-08-235-26/+124
| | | | | | | | | | | | | | | | | | | | | | | * i386.c (ix86_expand_carry_flag_compare): Validate operand. PR target/11031 * i386.c (const_0_to_3_operand, const_0_to_7_operand, const_0_to_15_operand, const_0_to_255_operand): New predicates. * i386.h (PREDICATE_CODES): Add these. * i386.c (pinsrw and pextrw patterns): Use them. PR target/10984 * i386.c (ix86_expand_binop_builtin): Behave sanely for VOIDmodes. PR target/8869 * expr.c (convert_modes): Deal properly with integer to vector constant conversion. PR target/8871 * i386.md (zero_extendsidi2*): Add MMX and SSE alternatives. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70751 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-23 Marek Michalkiewicz <marekm@amelek.gda.pl>marekm2003-08-232-1/+5
| | | | | | | * MAINTAINERS: Update my email address. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70746 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/s390/s390.h (LOAD_EXTEND_OP): Remove.uweigand2003-08-233-26/+47
| | | | | | | | | | | * config/s390/s390.md ("movhi"): New expander; old insn renamed to ... ("*movhi"): ... this. ("movqi", "*movqi"): Likewise. ("movqi_64"): Remove. ("*zero_extendhisi2_31"): Change predicate to s_operand. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70745 138bc75d-0d04-0410-961f-82ee72b054a4
* fix thinko in previousdalej2003-08-231-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70742 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-23 Dale Johannesen <dalej@apple.com>dalej2003-08-232-2/+7
| | | | | | | | * calls.c (emit_library_call_value_1): Fix obvious errors in arguments to emit_group_load. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70741 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-23 Jason Eckhardt <jle@rice.edu>jle2003-08-235-22/+11
| | | | | | | | | | | * calls.c (emit_library_call_value_1): Remove code related to LIBGCC_NEEDS_DOUBLE. * config/stormy16/stormy16.h: Remove mention of LIBGCC_NEEDS_DOUBLE. * doc/tm.texi: Likewise. * system.h: Poison the LIBGCC_NEEDS_DOUBLE macro. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70740 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/mips/linux64.h (STARTFILE_PREFIX_SPEC): Remove.rsandifo2003-08-232-6/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70739 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/mips/mips.c (mips_setup_incoming_varargs): Handle o32 and o64rsandifo2003-08-232-100/+38
| | | | | | | | as well. Put memory references in the varargs alias set. (mips_expand_prologue): Remove varargs handling from here. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70738 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/s390/s390.c (s390_expand_movstr, s390_expand_clrstr,uweigand2003-08-233-44/+52
| | | | | | | | | | s390_expand_cmpmem, s390_output_constant_pool, s390_build_va_list, s390_function_profiler, s390_output_mi_thunk): Use ISO C syntax for function pointer calls. * config/s390/s390.md ("*negdi2_31"): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70735 138bc75d-0d04-0410-961f-82ee72b054a4
* * combine.c (apply_distributive_law): Correct comment.sayle2003-08-232-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70734 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c++/3765lerdsuwa2003-08-234-21/+61
| | | | | | | | | | | | | * search.c (dfs_access_in_type): Fix typo in comment. (dfs_accessible_queue_p): Likewise. (dfs_accessible_p): Only terminate when a friend is found. (accessible_p): Return immediately if access_in_type allows access. * g++.dg/parse/access6.C: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70733 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c++/641, c++/11876lerdsuwa2003-08-239-24/+117
| | | | | | | | | | | | | | | | | | | * friend.c (add_friend): Add complain parameter. (make_friend_class): Likewise. (do_friend): Adjust add_friend call. * decl.c (grokdeclarator): Adjust make_friend_class call. * parser.c (cp_parser_member_declaration): Likewise. (cp_parser_template_declaration_after_exp): Likewise. * pt.c (instantiate_class_template): Adjust make_friend_class and add_friend call. * cp-tree.h (make_friend_class): Adjust declaration. (add_friend): Likewise. * g++.dg/template/friend22.C: New test. * g++.dg/template/friend23.C: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70732 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-23 Jason Eckhardt <jle@rice.edu>jle2003-08-232-3/+4
| | | | | | | * config/i860/i860.h: Remove comment mentioning LIBGCC_NEEDS_DOUBLE. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70731 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-23 Andreas Tobler <a.tobler@schweiz.ch>andreast2003-08-232-1/+5
| | | | | | | | PR libgcj/8823 * libjava.lang/pr8823.xfail: Removed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70730 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-22 Jason Eckhardt <jle@rice.edu>jle2003-08-234-143/+210
| | | | | | | | | | | | | * config/i860/i860.c (i860_build_va_list): Create the va_decl declaration. Document the va_list structure. (i860_va_start): Initialize the va_list structure. (i860_va_arg): Rewrite completely. * config/i860/i860.h (LIBGCC_NEEDS_DOUBLE): Don't define. * config/i860/varargs.asm: Do not allocate or initialize a va_list. Return the address of the register save area. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70729 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-23 Phil Edwards <pme@gcc.gnu.org>pme2003-08-233-35/+43
| | | | | | | | | * configure.in: Use newline instead of semicolon when assuming shell arguments in a for loop. * configure: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70728 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/iq2000/iq2000.c: Fix comment typos.kazu2003-08-233-4/+9
| | | | | | | * config/iq2000/iq2000.md: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70727 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/iq2000/iq2000.c: Follow spelling conventions.kazu2003-08-234-12/+18
| | | | | | | | * config/iq2000/iq2000.h: Likewise. * config/mn10300/mn10300.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70726 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-22 Jason Eckhardt <jle@rice.edu>jle2003-08-233-3/+18
| | | | | | | | | | | | | * config/i860/i860.c (output_move_double): Don't set latehalf to zero for CONST_INT (since it could be, e.g., -1). * config/i860/i860.h (REMSI3_LIBCALL): Replace this macro... (MODSI3_LIBCALL): ...with this one. (UREMSI3_LIBCALL): Replace this macro... (UMODSI3_LIBCALL): ...with this one. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70725 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-22 Jason Eckhardt <jle@rice.edu>jle2003-08-234-502/+124
| | | | | | | | | | | | | | | | | | * config/i860/i860-protos.h (output_delay_insn): Remove prototype. (output_delayed_branch): Remove prototype. (single_insn_src_p): Remove prototype. * config/i860/i860.c (single_insn_src_p): Remove function. (output_delayed_branch): Remove function. (output_delay_insn): Remove function. (va_start): Remove unconditional test and dead code, re-format. Fix coding style and spelling problems in various comments. * config/i860/i860.md (UNSPECV_BLOCKAGE): Define constant... (blockage pattern): ...and use it here. (all define_peephole patterns related to delayed branches): Remove. Fix coding style and spelling problems in various comments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70724 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-22 Jason Eckhardt <jle@rice.edu>jle2003-08-237-150/+100
| | | | | | | | | | | | | | | * config/i860/i860.c: Replace all occurrences of 'GNU CC' with 'GCC'. Remove all uses of the PARAMS macro. Remove superflous prototypes. Convert all function definitions from traditional to ISO C90 syntax. * config/i860/i860-protos.h: Replace all occurrences of 'GNU CC' with 'GCC'. Remove all uses of the PARAMS macro. * config/i860/i860.h: Replace all occurrences of 'GNU CC' with 'GCC'. * config/i860/i860.md: Likewise. * config/i860/sysv4.h: Likewise. * config/i860/varargs.asm: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70723 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-22 Jason Eckhardt <jle@rice.edu>jle2003-08-235-87/+156
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * config/i860/i860-protos.h (i860_va_start): Remove 'stdarg_p' argument. (tdesc_section): Add prototype. Update copyright dates. * config/i860/i860.c: Include coretypes.h, tm.h, and toplev.h. (TARGET_ASM_FUNCTION_PROLOGUE): Move definition to end of file. (TARGET_ASM_FUNCTION_EPILOGUE): Likewise. (targetm): Likewise. (i860_output_function_prologue): Substitute HOST_WIDE_INT_PRINT_DEC for '%d' where necessary. (i860_va_start): Remove 'stdarg_p' argument. Make conditional checks on 'stdarg_p' unconditional. Divide current_function_args_info.ints by UNITS_PER_WORD when referencing (likewise for .floats). (I860_SVR4_VARARGS): Rename... (I860_SVR4_VA_LIST): ...to this. Call build() with 't' rather than 'field'. (i860_rtx_costs): New function. (TARGET_RTX_COSTS): Define. (i860_internal_label): New function. (TARGET_ASM_INTERNAL_LABEL): Define. (i860_file_start): New function. Update copyright dates. * config/i860/i860.h (CPP_PREDEFINES): Remove. (TARGET_CPU_CPP_BUILTINS): Define. (EXPAND_BUILTIN_VA_START): Remove 'stdarg' argument. (CONST_COSTS): Remove (and move code to i860_rtx_costs). (ASM_FILE_START): Remove. (ASM_FILE_START_1): Remove. (ASM_GLOBALIZE_LABEL): Remove. (ASM_OUTPUT_INTERNAL_LABEL): Remove. (ASM_OUTPUT_CASE_LABEL): Replace call of ASM_OUTPUT_INTERNAL_LABEL with targetm.asm_out.internal_label. Update copyright dates. * config/i860/sysv4.h (USER_LABEL_PREFIX): Define. (CPP_PREDEFINES): Remove. (TARGET_OS_CPP_BUILTINS): Define. (GLOBAL_ASM_OP): Define. (ASM_FILE_START): Remove. (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Define. (TARGET_ASM_FILE_START): Define. Update copyright dates. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70722 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.misc-tests/linkage.exp: Treat all HP-UX platformsmmitchel2003-08-232-1/+6
| | | | | | | identically. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70721 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-22 Jason Eckhardt <jle@rice.edu>jle2003-08-2311-0/+6479
| | | | | | | | | | | | | | | | | | ChangeLog * MAINTAINERS: Resurrect the i860 maintainer. gcc/ChangeLog: * gcc/config.gcc (i860-*-sysv4*): Add target. * config/i860/i860-protos.h: New. * config/i860/i860.c: New. * config/i860/i860.h: New. * config/i860/i860.md: New. * config/i860/sysv4.h: New. * config/i860/varargs.asm: New. * config/i860/x-sysv4: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70719 138bc75d-0d04-0410-961f-82ee72b054a4
* * g++.old-deja/g++.ext/attrib5.C: XFAIL on hppa2*-hp-hpux11*.mmitchel2003-08-232-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70717 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-08-22 Jason Eckhardt <jle@rice.edu>jle2003-08-2329-934/+620
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * config/pa/pa.c: Replace 'GNU CC' with 'GCC'. Remove all uses of PARAMS macro. Convert all function definitions to ISO C90 syntax. * config/pa/elf.h: Replace 'GNU CC' with 'GCC'. * config/pa/fptr.c: Likewise. * config/pa/lib2funcs.asm: Likewise. * config/pa/long_double.h: Likewise. * config/pa/milli64.S: Likewise. * config/pa/pa-64.h: Likewise. * config/pa/pa-hpux.h: Likewise. * config/pa/pa-hpux10.h: Likewise. * config/pa/pa-hpux11.h: Likewise. * config/pa/pa-linux.h: Likewise. * config/pa/pa-modes.def: Likewise. * config/pa/pa-osf.h: Likewise. * config/pa/pa-pro-end.h: Likewise. * config/pa/pa.md: Likewise. * config/pa/pa32-linux.h: Likewise. * config/pa/pa64-linux.h: Likewise. * config/pa/pa64-hpux.h: Likewise. * config/pa/pa64-regs.h: Likewise. * config/pa/quadlib.c: Likewise. * config/pa/rtems.h: Likewise. * config/pa/pa-protos.h: Replace 'GNU CC' with 'GCC' and remove all uses of the PARAMS macro. * config/pa/pa.h: Likewise. * config/pa/som.h: Likewise. * config/iq2000/iq2000.c: Replace 'GNU CC' with 'GCC'. Remove all uses of PARAMS macro. Convert all function definitions to ISO C90 syntax. * config/iq2000-protos.h: Replace 'GNU CC' with 'GCC'. Remove all uses of PARAMS macro. * config/iq2000.h: Remove all uses of PARAMS macro. * config/iq2000/iq2000.md: Replace 'GNU CC' with 'GCC'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70715 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/s390/s390-protos.h (s390_output_pool_entry): Declare.uweigand2003-08-234-177/+93
| | | | | | | | | | | | | | | | | | | | | | | | | * config/s390/s390.c (gen_consttable): Remove. (s390_dump_pool): Use UNSPECV_POOL_ENTRY for pool entry insns. (s390_output_pool_entry): New function. * config/s390/s390.md (UNSPECV_POOL_QI, UNSPECV_POOL_HI, UNSPECV_POOL_SI, UNSPECV_POOL_DI, UNSPECV_POOL_TI, UNSPECV_POOL_SF, UNSPECV_POOL_DF): Remove, replace by ... (UNSPECV_POOL_ENTRY): ... this new constant. ("consttable_qi", "consttable_hi", "consttable_si", "consttable_di", "consttable_ti", "consttable_sf", "consttable_df"): Remove ... ("*pool_entry"): ... and replace by this new insn. ("literal_pool_31"): Do not emit anchor label if pool empty. * config/s390/s390.c (struct machine_function): Add save_return_addr_p. (s390_optimize_prolog): Save RETURN_REGNUM if save_return_addr_p. (s390_fixup_clobbered_return_reg): Remove. (s390_reorg): Don't call s390_fixup_clobbered_return_reg. (s390_return_addr_rtx): Always retrieve return address from save area slot. Use save_return_addr_p to force slot to be filled. (s390_emit_prologue): Remove has_hard_reg_initial_val test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70714 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud