platform/upstream/linaro-gcc.git
19 years ago2005-07-04 Ed Schonberg <schonberg@adacore.com>
charlet [Mon, 4 Jul 2005 13:27:32 +0000 (13:27 +0000)]
2005-07-04  Ed Schonberg  <schonberg@adacore.com>

* exp_attr.adb (Mod): Evaluate condition expression with checks off,
to prevent spurious warnings.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101577 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-04 Eric Botcazou <ebotcazou@adacore.com>
charlet [Mon, 4 Jul 2005 13:27:21 +0000 (13:27 +0000)]
2005-07-04  Eric Botcazou  <ebotcazou@adacore.com>

* decl.c (prepend_attributes) <Pragma_Linker_Constructor>: New case.
<Pragma_Linker_Destructor>: Likewise.

* einfo.ads (Has_Gigi_Rep_Item): Document Pragma_Linker_Constructor and
Pragma_Linker_Destructor.

* gigi.h (attr_type): Add ATTR_LINK_CONSTRUCTOR and
ATTR_LINK_DESTRUCTOR.
(static_ctors, static_dtors): New variables.

* misc.c (gnat_expand_body): Output current function as constructor
and destructor if requested.

* par-prag.adb: Add processing for pragma Linker_Constructor and
Linker_Destructor.

* sem_prag.adb (Find_Unique_Parameterless_Procedure): New function
extracted from Check_Interrupt_Or_Attach_Handler.
(Check_Interrupt_Or_Attach_Handler): Invoke it.
Implement pragma Linker_Constructor and Linker_Destructor with the
help of Find_Unique_Parameterless_Procedure.
Replace Name_Alias with Name_Target for pragma Linker_Alias.

* snames.h, snames.ads, snames.adb:
Add Name_Linker_Constructor and Name_Linker_Destructor.
Add Pragma_Linker_Constructor and Pragma_Linker_Destructor.
* snames.adb: Remove Name_Alias.

* trans.c: Include cgraph.h.
(build_global_cdtor): New function.
(Compilation_Unit_to_gnu): Build global constructor and destructor if
needed.
(tree_transform) <N_Identifier>: Substitute renaming of view-conversions
of objects too.
(addressable_p) <COMPONENT_REF>: Unconditionally test
DECL_NONADDRESSABLE_P on STRICT_ALIGNMENT platforms.

* utils.c (process_attributes) <ATTR_LINK_ALIAS>: Do not assemble the
variable if it is external.

(static_ctors, static_dtors): New global variables.
(process_attributes) <ATTR_LINK_CONSTRUCTOR>: New case.
<ATTR_LINK_DESTRUCTOR>: Likewise.
(end_subprog_body): Chain function as constructor and destructor
if requested.

* exp_util.adb (Force_Evaluation): Unconditionally invoke
Remove_Side_Effects with Variable_Ref set to true.
(Remove_Side_Effects): Handle scalar types first. Use a renaming
for non-scalar types even if Variable_Ref is true and for class-wide
expressions.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101576 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-04 Gary Dismukes <dismukes@adacore.com>
charlet [Mon, 4 Jul 2005 13:26:45 +0000 (13:26 +0000)]
2005-07-04  Gary Dismukes  <dismukes@adacore.com>
    Ed Schonberg  <schonberg@adacore.com>
    Javier Miranda  <miranda@adacore.com>

* checks.adb (Null_Exclusion_Static_Checks): In the case of
N_Object_Declaration, only perform the checks if the Object_Definition
is not an Access_Definition.

        * sem_ch3.adb (Access_Subprogram_Declaration): Add test for the case
        where the parent of an the access definition is an N_Object_Declaration
        when determining the Associated_Node_For_Itype and scope of an
        anonymous access-to-subprogram type.

* exp_ch6.adb (Expand_N_Subprogram_Declaration): Set the
Corresponding_Spec on the body created for a null procedure. Add ???
comment. Remove New_Copy_Tree call on body argument to
Set_Body_To_Inline.

* exp_ch6.adb (Add_Simple_Call_By_Copy_Code): For an out parameter with
discriminants, use the type of the actual as well, because the
discriminants may be read by the called subprogram.

* sem_ch3.adb (Access_Type_Declaration): If the designated type is an
access type we do not need to handle non-limited views.
(Build_Derived_Record_Type): Additional check to check that in case of
private types, interfaces are only allowed in private extensions.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101575 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-04 Joel Brobecker <brobecker@adacore.com>
charlet [Mon, 4 Jul 2005 13:26:28 +0000 (13:26 +0000)]
2005-07-04  Joel Brobecker  <brobecker@adacore.com>

* a-tags.adb (Type_Specific_Data): Define Tags_Table as a small array.
This prevents us from hitting a limitation during the debug info
generation when using stabs.
(Prims_Ptr): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101574 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-04 Vincent Celier <celier@adacore.com>
charlet [Mon, 4 Jul 2005 13:26:18 +0000 (13:26 +0000)]
2005-07-04  Vincent Celier  <celier@adacore.com>

* mlib-tgt-tru64.adb, mlib-tgt-aix.adb, mlib-tgt-irix.adb,
mlib-tgt-hpux.adb, mlib-tgt-linux.adb, mlib-tgt-solaris.adb,
mlib-tgt-mingw.adb, mlib-tgt-darwin.adb (Build_Dynamic_Library):
Remove all auto-initialization code, as this is now done through the
constructor mechanism.

* adaint.h, adaint.c (__gnat_binder_supports_auto_init,
__gnat_sals_init_using_constructors): New functions.

* bindgen.adb (Gen_Output_File_Ada): Generate pragmas
Linker_Constructor and Linker_Destructor when switch -a is used.

* bindusg.adb: Add line for new switch -a

* gnatbind.adb (Gnatbind_Supports_Auto_Init): New Boolean function
(Gnatbind): When switch -a is used, check if it is allowed

* switch-b.adb (Scan_Binder_Switches): Process new switch -a

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101573 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-04 Eric Botcazou <ebotcazou@adacore.com>
charlet [Mon, 4 Jul 2005 13:26:02 +0000 (13:26 +0000)]
2005-07-04  Eric Botcazou  <ebotcazou@adacore.com>

* s-mastop-tru64.adb (Pop_Frame): Use exc_lookup_function_entry to
fetch a code-range descriptor associated with the machine state. On
failure set the machine state's PC to 0; on success, pass the
descriptor to exc_virtual_unwind.

* init.c (Tru64 section): New function __gnat_set_code_loc.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101572 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-04 Thomas Quinot <quinot@adacore.com>
charlet [Mon, 4 Jul 2005 13:25:47 +0000 (13:25 +0000)]
2005-07-04  Thomas Quinot  <quinot@adacore.com>

* g-expect-vms.adb, g-expect.ads, g-expect.adb
(Get_Command_Output): New subprogram to launch a process and get its
standard output as a string.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101571 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * s-stausa.ads, s-stausa.adb: New files.
charlet [Mon, 4 Jul 2005 10:11:35 +0000 (10:11 +0000)]
* s-stausa.ads, s-stausa.adb: New files.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101570 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoNew file.
charlet [Mon, 4 Jul 2005 10:10:39 +0000 (10:10 +0000)]
New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101569 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoDaily bump.
gccadmin [Mon, 4 Jul 2005 00:16:22 +0000 (00:16 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101564 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-03 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Sun, 3 Jul 2005 23:55:04 +0000 (23:55 +0000)]
2005-07-03  Andrew Pinski  <pinskia@physics.uc.edu>

        PR testsuite/22288
        * gcc.dg/tree-ssa/pr14490-[1-4].c: Escape "+".

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101562 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * bb-reorder.c, c-pch.c, c-pragma.c, c.opt, cfghooks.c, cfgloop.c,
jsm28 [Sun, 3 Jul 2005 21:08:11 +0000 (21:08 +0000)]
* bb-reorder.c, c-pch.c, c-pragma.c, c.opt, cfghooks.c, cfgloop.c,
cfgrtl.c, cgraphunit.c, config/c4x/c4x.c, config/cris/cris.c,
config/frv/frv.c, config/host-darwin.c, config/iq2000/iq2000.c,
config/lynx.h, config/m68k/m68k.c, config/pa/pa.c, config/sh/sh.h,
config/stormy16/stormy16.c, config/v850/v850.c,
config/vax/netbsd-elf.h, coverage.c, dwarf2out.c, emit-rtl.c,
except.c, gcc.c, tree-cfg.c, tree-eh.c, tree-ssa.c, xcoffout.c:
Avoid "." or "\n" at end of diagnostics and capital letters at
start of diagnostics.
* combine.c, cse.c: Don't translate dump file output.
* toplev.c (print_version): Only translate output if going to
stderr.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101561 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * gfortran.texi, intrinsic.texi: Fix typos.
kazu [Sun, 3 Jul 2005 18:40:25 +0000 (18:40 +0000)]
* gfortran.texi, intrinsic.texi: Fix typos.
* symbol.c: Fix a comment typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101560 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * gfortran.texi, intrinsic.texi: Fix typo.
kazu [Sun, 3 Jul 2005 18:39:20 +0000 (18:39 +0000)]
* gfortran.texi, intrinsic.texi: Fix typo.
* symbol.c: Fix a comment typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101559 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * c-decl.c, tree-object-size.c, tree-vectorizer.c,
kazu [Sun, 3 Jul 2005 16:11:42 +0000 (16:11 +0000)]
* c-decl.c, tree-object-size.c, tree-vectorizer.c,
config/arm/unwind-arm.c, config/arm/unwind-arm.h: Fix comment
typos.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101558 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR other/13906
sje [Sun, 3 Jul 2005 15:40:29 +0000 (15:40 +0000)]
PR other/13906
* md5.c (md5_process_bytes): Check alignment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101557 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR other/13906
sje [Sun, 3 Jul 2005 15:38:39 +0000 (15:38 +0000)]
PR other/13906
* ansidecl.h (ATTRIBUTE_ALIGNED_ALIGNOF): New.
* md5.h (md5_uintptr): New.
(md5_ctx): Align buffer field.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101556 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * pa.c (fix_range): Fix typo in comment.
danglin [Sun, 3 Jul 2005 15:08:44 +0000 (15:08 +0000)]
* pa.c (fix_range): Fix typo in comment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101555 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * tree-vrp.c (extract_range_from_assert): Replace
kazu [Sun, 3 Jul 2005 15:06:00 +0000 (15:06 +0000)]
* tree-vrp.c (extract_range_from_assert): Replace
fold (build (...)) with fold_build2.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101554 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoobjc/
kazu [Sun, 3 Jul 2005 14:45:35 +0000 (14:45 +0000)]
objc/
* Make-lang.in (cc1plus-checksum.c): Use
build/genchecksum$(build_exeext), not build/genchecksum$(exeext).

objcp/
* Make-lang.in (cc1plus-checksum.c): Use
build/genchecksum$(build_exeext), not build/genchecksum$(exeext).

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101553 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * c-format.c (gcc_gfc_format_type, gcc_gfc_flag_pairs,
ghazi [Sun, 3 Jul 2005 14:28:03 +0000 (14:28 +0000)]
* c-format.c (gcc_gfc_format_type, gcc_gfc_flag_pairs,
gcc_gfc_char_table, init_dynamic_gfc_info): New.
(format_types_orig, handle_format_attribute): Add support for
format "gcc_gfc".

fortran:
* error.c (error_printf, error_print): Use ATTRIBUTE_GCC_GFC.
* gfortran.h (ATTRIBUTE_GCC_GFC): New.
(gfc_warning, gfc_warning_now, gfc_error, gfc_error_now,
gfc_fatal_error, gfc_internal_error, gfc_notify_std): Use
ATTRIBUTE_GCC_GFC.

testsuite:
* gcc.dg/format/gcc_gfc-1.c: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101552 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoforgot to commit Changelog entry for last commit.
gdr [Sun, 3 Jul 2005 14:17:03 +0000 (14:17 +0000)]
forgot to commit Changelog entry for last commit.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101551 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * varasm.c (assemble_variable): Fix format specifier thinko.
gdr [Sun, 3 Jul 2005 14:14:28 +0000 (14:14 +0000)]
    * varasm.c (assemble_variable): Fix format specifier thinko.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101550 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-03 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Sun, 3 Jul 2005 13:02:40 +0000 (13:02 +0000)]
2005-07-03  Andrew Pinski  <pinskia@physics.uc.edu>

        * pr14490-[1-4].c: Fix typos scan-tree-dump-times so they now pass.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101549 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR tree-optimization/22029 (and 22135)
irar [Sun, 3 Jul 2005 11:45:56 +0000 (11:45 +0000)]
    PR tree-optimization/22029 (and 22135)
        * tree-pretty-print.c (dump_generic_node): Check that the node is not
        a phi node before calling dump_vops.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101548 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * tree-dump.h (dump_string_field): Declare.
gdr [Sun, 3 Jul 2005 06:50:51 +0000 (06:50 +0000)]
    * tree-dump.h (dump_string_field): Declare.
        * tree-dump.c: Use it instead of dump_string.
        (dump_string_field): Make non-static.

cp/
        * dump.c: Use dump_string_field.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101547 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/sh/sh.c (sh_output_mi_thunk): Initialize and clean
kkojima [Sun, 3 Jul 2005 05:21:42 +0000 (05:21 +0000)]
* config/sh/sh.c (sh_output_mi_thunk): Initialize and clean
up the minimal CFG stuff always when optimize > 0.  Call
split_all_insns_noflow in PIC case if needed.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101546 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR fortran/20842
fxcoudert [Sun, 3 Jul 2005 01:46:12 +0000 (01:46 +0000)]
PR fortran/20842
* io.c (match_dt_element): Do not allow END tag in PRINT or
WRITE statement.
* gfortran.dg/io_invalid_1.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101545 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR c++/18279
gdr [Sun, 3 Jul 2005 01:14:56 +0000 (01:14 +0000)]
    PR c++/18279
        * c-decl.c (c_write_global_declarations): Dump contents of
        external scope to.
        * tree-dump.c (dequeue_and_dump): Dump abstract origin of a
        decl.
        <TRY_FINALLY_EXPR>, <RETURN_EXPR>, <CASE_LABEL_EXPR>,
        <LABEL_EXPR>,
        <GOTO_EXPR>, <SWITCH_EXPR>: Add.
        (dump_enabled_p): Return TRUE if PHASE is TDI_all and any dump
        is enabled.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101544 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * c-common.h (GCC_DIAG_STYLE): Define.
jsm28 [Sun, 3 Jul 2005 00:38:49 +0000 (00:38 +0000)]
* c-common.h (GCC_DIAG_STYLE): Define.
* c-tree.h (GCC_DIAG_STYLE): Do not define.  Change minimum GCC
version for format checking to 4.1.
* c-format.c: Include toplev.h after c-common.h.
(enum format_type): Add gcc_tdiag_format_type.
(gcc_tdiag_length_specs, gcc_tdiag_flag_pairs,
gcc_tdiag_flag_specs, gcc_tdiag_char_table): New.
(format_types_orig): Add gcc_tdiag.
(init_dynamic_diag_info): Support gcc_tdiag formats.
(handle_format_attribute): Likewise.
* toplev.h (NO_FRONT_END_DIAG, ATTRIBUTE_GCC_FE_DIAG): Remove.
(GCC_DIAG_STYLE): Default to __gcc_tdiag__.  Change minimum GCC
version for format checking to 4.1.
(warning0, warning, error, pedwarn, sorry): Use
ATTRIBUTE_GCC_DIAG.
* config/rs6000/rs6000.c (altivec_expand_builtin), varasm.c
(finish_aliases_1): Do not use %qE.
* config/arm/arm.c, config/i386/i386.c, config/mmix/mmix.c,
config/pdp11/pdp11.c, stor-layout.c, tree-eh.c, tree-ssa.c:
Correct format bugs.
* config/v850/v850-protos.h (v850_output_aligned_bss): Change size
parameter to unsigned HOST_WIDE_INT.
* config/v850/v850.c (v850_output_aligned_bss): Likewise.

cp:
* cp-tree.h (GCC_DIAG_STYLE): #undef before defining.  Change
minimum GCC version for format checking to 4.1.

testsuite:
* gcc.dg/format/gcc_diag-1.c: Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101543 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoDaily bump.
gccadmin [Sun, 3 Jul 2005 00:16:14 +0000 (00:16 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101541 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR middle-end/21742
dje [Sat, 2 Jul 2005 23:06:40 +0000 (23:06 +0000)]
    PR middle-end/21742
        * expr.c (write_complex_part): Use adjust_address for MEM.
        (read_complex_part): Same.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101539 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-02 Daniel Berlin <dberlin@dberlin.org>
dberlin [Sat, 2 Jul 2005 22:18:24 +0000 (22:18 +0000)]
2005-07-02  Daniel Berlin  <dberlin@dberlin.org>

Fix PR tree-optimization/22280

* tree-sra.c (generate_element_init): Remove useless loop.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101538 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * Make-lang.in (cc1plus-checksum.c): Use
kazu [Sat, 2 Jul 2005 22:17:53 +0000 (22:17 +0000)]
* Make-lang.in (cc1plus-checksum.c): Use
build/genchecksum$(build_exeext), not build/genchecksum$(exeext).

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101537 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/alpha/alpha.c (alpha_legitimize_address): Check for
rth [Sat, 2 Jul 2005 21:49:02 +0000 (21:49 +0000)]
    * config/alpha/alpha.c (alpha_legitimize_address): Check for
        TLS_MODEL_NONE.
        (alpha_stdarg_optimize_hook): Use DECL_UID with va_list_vars.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101536 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-02 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Sat, 2 Jul 2005 16:24:31 +0000 (16:24 +0000)]
2005-07-02  Andrew Pinski  <pinskia@physics.uc.edu>

        PR middle-end/14490
        * fold-const.c (fold_binary): Handle the return value of
        fold_to_nonsharp_ineq_using_bound if we get back the same operand back.
        Implement "X +- C1 CMP C2" folding to "X CMP C2 -+ C1".

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101535 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * tree-ssa-dom.c (find_equivalent_equality_comparison): Do not
law [Sat, 2 Jul 2005 14:15:11 +0000 (14:15 +0000)]
    * tree-ssa-dom.c (find_equivalent_equality_comparison): Do not
        a eliminate type conversion which feeds an equality comparison
        if the original type or either operand in the comparison is a
        function pointer.

* gcc.dg/tree-ssa/pr22051-1.c: New test.
* gcc.dg/tree-ssa/pr22051-2.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101534 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * c.opt, common.opt, config/bfin/bfin.opt, config/pa/pa.opt,
jsm28 [Sat, 2 Jul 2005 13:19:59 +0000 (13:19 +0000)]
* c.opt, common.opt, config/bfin/bfin.opt, config/pa/pa.opt,
config/rs6000/rs6000.opt, params.def: Remove "." from end of help
texts.
* config/avr/avr.c: Do not use '`' as left quote.
* config/rs6000/rs6000.c, config/s390/s390.c, opts.c, tree.c:
Remove "." from end of diagnostics.  Make diagnostics start with
lowercase letter.

cp:
* name-lookup.c, parser.c: Use %q, %< and %> to quote in
diagnostics.

fortran:
* lang.opt: Remove "." from end of help texts.

objc:
* objc-act.c: Use %q to quote in diagnostics.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101533 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-02 Zack Weinberg <zack@codesourcery.com>
jsm28 [Sat, 2 Jul 2005 10:55:32 +0000 (10:55 +0000)]
2005-07-02  Zack Weinberg  <zack@codesourcery.com>
            Joseph S. Myers  <joseph@codesourcery.com>

* toplev.c (default_tree_printer): Handle setting location with
'+' flag.
* c-objc.common.c (c_tree_printer): Likewise.
* c-format.c (gcc_diag_flag_specs): Add '+'.
(gcc_cdiag_char_table): Allow '+' flag for tree formats.
(format_types_orig): Allow '+' flag for gcc_diag and gcc_cdiag
formats.
* c-common.c, c-decl.c, c-objc-common.c, c-pragma.c,
config/arm/pe.c, config/i386/winnt.c, config/ia64/ia64.c,
config/mcore/mcore.c, config/sh/symbian.c, config/sol2.c,
config/v850/v850.c, function.c, stor-layout.c, toplev.c,
tree-inline.c, tree-optimize.c, tree.c, varasm.c: Use '+' flag
instead of %J or %H.  Use 'q' flag for quoting.  Avoid '.' at end
of diagnostics.  Use %q+D not %s for a decl.  Do not pass excess
format arguments where %J is used without %D.

cp:
* error.c (location_of): Add comment.
(locate_error, cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
* cp-tree.h (cp_error_at, cp_warning_at, cp_pedwarn_at): Remove.
* call.c, class.c, decl.c, decl2.c, friend.c, init.c,
name-lookup.c, parser.c, pt.c, search.c, semantics.c, typeck.c,
typeck2.c: Use '+' flag instead of %J, cp_error_at, cp_warning_at
or cp_pedwarn_at.  Mark up some diagnostic strings with N_.

java:
* class.c, decl.c, expr.c: Use '+' flag instead of %J.  Use 'q'
flag for quoting.

objc:
* objc-act.c: Use '+' flag instead of %J.  Use 'q' flag for
quoting.

testsuite:
* gcc.dg/format/gcc_diag-1.c: Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101532 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * Makefile.def (target_modules): Add libssp.
jakub [Sat, 2 Jul 2005 08:52:21 +0000 (08:52 +0000)]
* Makefile.def (target_modules): Add libssp.
* configure.in (target_libraries): Add target-libssp.
* configure: Rebuilt.
* Makefile.in: Rebuilt.
gcc/
* gcc.c (LINK_SSP_SPEC): Define.
(link_ssp_spec): New variable.
(LINK_COMMAND_SPEC): Add %(link_ssp).
(static_specs): Add link_ssp_spec.
* configure.ac (TARGET_LIBC_PROVIDES_SSP): New test.
* configure: Rebuilt.
* config.in: Rebuilt.

* config/rs6000/linux.h (TARGET_THREAD_SSP_OFFSET): Define.
* config/rs6000/linux64.h (TARGET_THREAD_SSP_OFFSET): Likewise.
* config/i386/linux.h (TARGET_THREAD_SSP_OFFSET): Likewise.
* config/i386/linux64.h (TARGET_THREAD_SSP_OFFSET): Likewise.
* config/rs6000/rs6000.md (stack_protect_set, stack_protect_test):
If TARGET_THREAD_SSP_OFFSET is defined, use -0x7010(13) resp.
-0x7008(2) instead of reading __stack_chk_guard variable.
* config/i386/i386.md (UNSPEC_SP_SET, UNSPEC_SP_TEST): Change
number.
(UNSPEC_SP_TLS_SET, UNSPEC_SP_TLS_TEST): New constants.
(stack_protect_set, stack_protect_test): Use *_tls* patterns
if TARGET_THREAD_SSP_OFFSET is defined.
(stack_tls_protect_set_si, stack_tls_protect_set_di,
stack_tls_protect_test_si, stack_tls_protect_test_di): New insns.

Revert:
2005-06-27  Richard Henderson  <rth@redhat.com>
* libgcc-std.ver (GCC_4.1.0): New.
* libgcc.h (__stack_chk_guard): Declare.
(__stack_chk_fail, __stack_chk_fail_local): Declare.
* libgcc2.c (L_stack_chk, L_stack_chk_local): New.
* mklibgcc.in (lib2funcs): Add them.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101531 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-01 Jerry DeLisle <jvdelisle@verizon.net>
jvdelisle [Sat, 2 Jul 2005 03:17:55 +0000 (03:17 +0000)]
2005-07-01  Jerry DeLisle  <jvdelisle@verizon.net>

    * intrinsic.texi: Add documentaion for eoshift, epsilon, etime, and exit.
    Fixed alignment of text for dtime syntax. Fixed a few line lengths.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101530 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/i386/linux-unwind.h (x86_64_fallback_frame_state): Cast to
rth [Sat, 2 Jul 2005 02:18:13 +0000 (02:18 +0000)]
    * config/i386/linux-unwind.h (x86_64_fallback_frame_state): Cast to
        void * before struct sigcontext *.
        (x86_fallback_frame_state): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101529 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoFix doc bug pointed out by Sergei Organov.
wilson [Sat, 2 Jul 2005 01:02:16 +0000 (01:02 +0000)]
Fix doc bug pointed out by Sergei Organov.
* doc/invoke.texi (-funit-at-a-time): Correct grammar in second bullet.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101528 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-01 Jerry DeLisle <jvdelisle@verizon.net>
jvdelisle [Sat, 2 Jul 2005 00:45:55 +0000 (00:45 +0000)]
2005-07-01  Jerry DeLisle <jvdelisle@verizon.net>

    * gfortran.texi: Fixed typos and grammar.
    * invoke.texi: Fixed typos and grammar.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101527 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoDaily bump.
gccadmin [Sat, 2 Jul 2005 00:16:23 +0000 (00:16 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101522 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * libtool-version: Updated.
tromey [Fri, 1 Jul 2005 23:43:39 +0000 (23:43 +0000)]
* libtool-version: Updated.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101520 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-01 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Fri, 1 Jul 2005 22:01:17 +0000 (22:01 +0000)]
2005-07-01  Andrew Pinski  <pinskia@physics.uc.edu>

        PR tree-opt/22269
        * tree-ssa-reassoc.c (should_transpose): Fix which operand
        we check for SSA_NAME for.

2005-07-01  Andrew Pinski  <pinskia@physics.uc.edu>

        PR tree-opt/22269
        * gcc.c-torture/compile/pr22269.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101519 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * MAINTAINERS: Change email address. Resign from maintainership.
zack [Fri, 1 Jul 2005 21:09:24 +0000 (21:09 +0000)]
* MAINTAINERS: Change email address.  Resign from maintainership.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101518 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-29 Daniel Berlin <dberlin@dberlin.org>
dberlin [Fri, 1 Jul 2005 19:45:23 +0000 (19:45 +0000)]
2005-06-29  Daniel Berlin  <dberlin@dberlin.org>

Fix PR tree-optimization/22071

* tree-ssa-structalias.c (offset_overlaps_with_access): New
function.
(get_constraint_for_component_ref): Use it.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101516 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-30 Daniel Berlin <dberlin@dberlin.org>
dberlin [Fri, 1 Jul 2005 19:43:37 +0000 (19:43 +0000)]
2005-06-30  Daniel Berlin  <dberlin@dberlin.org>

* decl.c (require_complete_types_for_parms): Call relayout_decl
instead of layout_decl.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101515 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * zh_CN.po: Update.
jsm28 [Fri, 1 Jul 2005 19:31:40 +0000 (19:31 +0000)]
* zh_CN.po: Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101513 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR other/22268
ian [Fri, 1 Jul 2005 16:39:36 +0000 (16:39 +0000)]
PR other/22268
* cp-demangle.c (d_expr_primary): Don't run off the end of the
string while looking for the end of a literal value.
* testsuite/demangle-expected: Add test case.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101506 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-01 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Fri, 1 Jul 2005 15:21:09 +0000 (15:21 +0000)]
2005-07-01  Andrew Pinski  <pinskia@physics.uc.edu>

        * parse.y (issue_warning_error_from_context): Call
        pp_output_formatted_text to be able to get the buffer.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101505 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-01 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Fri, 1 Jul 2005 14:26:18 +0000 (14:26 +0000)]
2005-07-01  Andrew Pinski  <pinskia@physics.uc.edu>

        PR other/22264
        * diagnostic.c (diagnostic_report_current_module): Use pp_newline to
        print out the last new line.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101504 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-01 Richard Guenther <rguenther@suse.de>
rguenth [Fri, 1 Jul 2005 10:20:32 +0000 (10:20 +0000)]
2005-07-01  Richard Guenther  <rguenther@suse.de>

* MAINTAINERS: Change my e-mail address and affiliation.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101503 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/cris/cris.md (CRIS_CC0_REGNUM): New constant.
hp [Fri, 1 Jul 2005 10:04:10 +0000 (10:04 +0000)]
* config/cris/cris.md (CRIS_CC0_REGNUM): New constant.
Swap numbers for CRIS_AP_REGNUM and CRIS_MOF_REGNUM.
* config/cris/cris.c (cris_conditional_register_usage): Adjust
reg_names[CRIS_CC0_REGNUM] for early CRIS versions.
(cris_print_operand) <case REG>: Handle CRIS_CC0_REGNUM.
(cris_md_asm_clobbers): Clobber CRIS_CC0_REGNUM for all asms.
* config/cris/cris.h (CRIS_CANONICAL_CC0_REGNUM): New macro.
(enum reg_class): New member CC0_REGS.
(REG_CLASS_FROM_LETTER): Add 'c' for CC0_REGS.
(FIRST_PSEUDO_REGISTER, CALL_USED_REGISTERS, REG_ALLOC_ORDER)
(HARD_REGNO_MODE_OK, MODES_TIEABLE_P, REG_CLASS_NAMES)
(CRIS_SPECIAL_REGS_CONTENTS, REG_CLASS_CONTENTS, REGNO_REG_CLASS)
(PREFERRED_RELOAD_CLASS, REGISTER_NAMES, DBX_REGISTER_NUMBER):
Adjust for register now described.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101502 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-01 Paolo Carlini <pcarlini@suse.de>
paolo [Fri, 1 Jul 2005 08:25:11 +0000 (08:25 +0000)]
2005-07-01  Paolo Carlini  <pcarlini@suse.de>

        Port from libstdcxx_so_7-branch:
2004-10-28  Chris Jefferson  <chris@bubblescope.net>

PR libstdc++/17441
* include/bit/stl_algo.h (find(,,,input_iterator_tag),
find(,,,random_access_interator_tag),
find_if(,,,input_iterator_tag),
find_if(,,,random_access_iterator_tag)): Uglify function name.
(find, find_if): Use new uglified specialisation names.
* testsuite/25_algorithms/find/17441.cc: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101501 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR target/22262
jakub [Fri, 1 Jul 2005 08:25:04 +0000 (08:25 +0000)]
PR target/22262
* config/i386/i386.md (stack_protect_test_si,
stack_protect_test_di): Add earlyclobber for scratch 3.
* config/rs6000/rs6000.md (stack_protect_testsi,
stack_protect_testdi): Add earlyclobber for scratch 3,
remove earlyclobber from scratch 4.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101500 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * intrinsics/unpack_generic.c: Remove const from parameter.
aj [Fri, 1 Jul 2005 05:44:50 +0000 (05:44 +0000)]
* intrinsics/unpack_generic.c: Remove const from parameter.

* io/transfer.c (formatted_transfer): Remove unused variable.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101499 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR 21584
dnovillo [Fri, 1 Jul 2005 03:55:28 +0000 (03:55 +0000)]
PR 21584
PR 22219
* tree-ssa-alias.c (create_name_tags): Also process
non-dereferenced pointers.
Remove argument 'ai'.  Update all callers.

testsuite/ChangeLog

PR 21584
PR 22219
* g++.dg/tree-ssa/pr21584-1.C: New test.
* g++.dg/tree-ssa/pr21584-2.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101498 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-29 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Fri, 1 Jul 2005 03:39:19 +0000 (03:39 +0000)]
2005-06-29  Andrew Pinski  <pinskia@physics.uc.edu>

        * parse.y (issue_warning_error_from_context): Update for the
        renaming of pp_format_text to pp_format.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101497 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2006-07-01 Kelley Cook <kcook@gcc.gnu.org>
kcook [Fri, 1 Jul 2005 03:12:40 +0000 (03:12 +0000)]
2006-07-01  Kelley Cook  <kcook@gcc.gnu.org>

* gcc.pot: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101496 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-30 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Fri, 1 Jul 2005 02:54:32 +0000 (02:54 +0000)]
2005-06-30  Andrew Pinski  <pinskia@physics.uc.edu>

        * config/rs6000/darwin.h (STARTING_FRAME_OFFSET):
        Set to 0 for FRAME_GROWS_DOWNWARD.
        (REGISTER_NAMES): Add sfp.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101495 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-07-01 Kelley Cook <kcook@gcc.gnu.org>
kcook [Fri, 1 Jul 2005 02:10:45 +0000 (02:10 +0000)]
2005-07-01  Kelley Cook  <kcook@gcc.gnu.org>

* config/arm/libunwind.S, config/arm/pr-support.c,
config/arm/unwind-arm.c, config/arm/unwind-arm.h,
config/c4x/predicates.md, tree-object-size.c: Update FSF address.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101494 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago[gcc/objc/ChangeLog]
zlaski [Fri, 1 Jul 2005 01:44:12 +0000 (01:44 +0000)]
[gcc/objc/ChangeLog]
2005-06-30  Ziemowit Laski  <zlaski@apple.com>

       * objc-act.c (objc_build_volatilized_type): New function.
       (objc_volatilize_decl): Call objc_build_volatilized_type()
       instead of build_qualified_type().

[gcc/testsuite/ChangeLog]
2005-06-30  Ziemowit Laski  <zlaski@apple.com>

       * obj-c++.dg/try-catch-11.mm: New.
       * objc.dg/try-catch-10.m: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101493 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoUpdate FSF address
kcook [Fri, 1 Jul 2005 01:29:17 +0000 (01:29 +0000)]
Update FSF address

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101492 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoDaily bump.
gccadmin [Fri, 1 Jul 2005 00:16:15 +0000 (00:16 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101486 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR target/22260
ebotcazou [Fri, 1 Jul 2005 00:15:02 +0000 (00:15 +0000)]
PR target/22260
* config/sparc/sparc.c (emit_and_preserve): Add 2nd register.
Preserve the 2nd register too, if present.
(sparc_output_mi_thunk) <PIC case>: Preserve the PIC register too.
Adjust call to emit_and_preserve.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101484 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * gnu/classpath/jdwp/util/JdwpString.java: New file.
aluchko [Thu, 30 Jun 2005 23:19:36 +0000 (23:19 +0000)]
   * gnu/classpath/jdwp/util/JdwpString.java: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101482 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agogcc:
zack [Thu, 30 Jun 2005 23:09:06 +0000 (23:09 +0000)]
gcc:
* pretty-print.h (PP_NL_ARGMAX): New.
(text_info): Add locus.
(struct chunk_info): New.
(output_buffer): Add formatted_obstack, chunk_obstack, and
cur_chunk_array. Change obstack to a pointer.
(pp_wrapping_mode_t, pp_wrapping_mode, pp_set_verbatim_wrapping): New.
(struct pretty_print_info): Replace ideal_maximum_length and
prefixing_rule with wrapping.
(pp_line_cutoff, pp_prefixing_rule): Update to match.
Update prototypes and wrapper macros throughout.
* pretty-print.c (pp_formatted_text_data, pp_append_r)
(pp_base_clear_output_area, pp_construct, pp_base_formatted_text)
(pp_base_last_position_in_text, pp_base_newline, pp_base_character):
Update for changes to pp structure.
(pp_base_prepare_to_format, pp_base_format_text): Delete.
(pp_base_format, pp_base_output_formatted_text): New functions.
(pp_base_format_verbatim): Use pp_set_verbatim_wrapping.
(pp_verbatim): Clear text.locus.
(pp_printf): Likewise.  Use pp_format and pp_output_formatted_text.
* c-objc-common.c (c_tree_printer): Update function signature.
* diagnostic.c (diagnostic_initialize): Update for changes to
pp structure.
(diagnostic_report_diagnostic): Call pp_format and then
pp_output_formatted_text.
(verbatim): Clear text.locus.
* diagnostic.h (diagnostic_prefixing_rule, diagnostic_line_cutoff):
Update for changes to pp structure.

* c-lang.c: No need to include c-pretty-print.h.
* Makefile.in: Remove bogus line containing only a tab.
(c-lang.o): Update dependencies.
* toplev.c (announce_function): Don't use verbatim.
(default_tree_printer): Update signature.

* objc/objc-lang.c: No need to include c-pretty-print.h.
* objc/Make-lang.in: Update dependencies.

gcc/cp:
* cp-lang.c: No need to include cxx-pretty-print.h.
* error.c (cp_printer): Update signature.  No need to process
flags.
(print_instantiation_partial_context): Output last newline
with pp_base_newline.
* Make-lang.in: Update dependencies.

gcc/objcp:
* objcp-lang.c: No need to include cxx-pretty-print.h.
* Make-lang.in: Update dependencies.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101481 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-29 Daniel Berlin <dberlin@dberlin.org>
dberlin [Thu, 30 Jun 2005 22:18:42 +0000 (22:18 +0000)]
2005-06-29  Daniel Berlin  <dberlin@dberlin.org>

* tree-complex.c (complex_variable_components): Now a hashtable.
(cvc_lookup): Ditto.
(cvc_insert): Ditto.
(create_components): Use referenced var iterator.
Initialize hashtable. Use cvc_insert/lookup.
(extract_components): Use cvc_insert/lookup.
(update_complex_components): Ditto.
(update_complex_components_on_edge): Ditto.
* tree-dfa.c (referenced_vars): Now a hashtable.
(dump_referenced_vars): Use iterator.
(referenced_var_lookup): New function.
(referenced_var_insert): Ditto.
(add_referenced_var): Use referenced_var_insert.
(mark_new_vars_to_rename): Use DECL_UID.
* tree-flow-inline.h (first_htab_element): New function.
(end_htab_p): Ditto.
(next_htab_element): Ditto.
(first_referenced_var): Ditto.
(end_referenced_vars_p): Ditto.
(next_referenced_var): Ditto.
(is_call_clobbered): Use DECL_UID.
(mark_call_clobbered): Ditto.
(clear_call_clobbered): Ditto.
(mark_non_addressable): Ditto.
* tree-flow.h (htab_iterator): New struct.
(FOR_EACH_HTAB_ELEMENT): New macro.
(struct int_tree_map): New struct.
(int_tree_map_hash): Prototype.
(int_tree_map_eq): Ditto.
(referenced_var_iterator): Ditto.
(FOR_EACH_REFERENCED_VAR): New macro.
(referenced_vars): Now a hashtable.
* tree-into-ssa.c (symbol_marked_for_renaming): Use DECL_UID.
(add_new_name_mapping): Ditto.
(mark_def_sites): Ditto.
(insert_phi_nodes): Use referenced_var iterator.
(mark_def_site_blocks): Ditto.
(mark_sym_for_renaming): Use DECL_UID.
* tree-sra.c (is_sra_candidate_decl): Use DECL_UID.
(lookup_element): Ditto.
(find_candidates_for_sra): Use referenced_vars iterator.
Use DECL_UID.
* tree-ssa-alias.c (NUM_REFERENCES): New macro.
(NUM_REFERENCES_CLEAR): Ditto.
(NUM_REFERENCES_INC): Ditto.
(NUM_REFERENCES_SET): Ditto.
(alias_obstack): New bitmap obstack.
(struct alias_map_d): Use bitmap, not sbitmap.
(struct alias_info): Remove num_references.
(init_alias_info): Use referenced_var iterator.
Initialize bitmap obstack.
(delete_alias_info): Use referenced_var iterator.
Free bitmap obstack.
(compute_points_to_and_addr_escape): Use DECL_UID.
Use new NUM_REFERENCES macros.
(compute_flow_sensitive_aliasing): may_aliases is now a bitmap.
Use new NUM_REFERENCES macros.
(group_aliases_into): Update prototype to use bitmap.
(setup_pointers_and_addressables): Use referenced_vars iterator.
Use DECL_UID. Use new NUM_REFERENCES macros.
(add_pointed_to_var): Use DECL_UID.
(dump_alias_info): Use referenced_var iterator.
(add_type_alias): Ditto.
(used_portions): Now a hashtable.
(used_part_map_eq): New function.
(used_part_map_hash): Ditto.
(free_used_part_map): Ditto.
(up_lookup): Ditto.
(up_insert): Ditto.
(get_or_create_used_part_for): Use up_lookup.
(create_overlap_variables_for): Ditto.
(find_used_portions): Use up_insert.
Use DECL_UID.
(create_structure_vars): Init used_portions hashtable, use
referenced_vars iterator.
* tree-ssa-live.c (create_ssa_var_map): sbitmaps became bitmaps.
Use DECL_UID.
* tree-ssa-loop-im.c (gather_mem_refs_stmt): Use DECL_UID.
* tree-ssa-operands.c (get_asm_expr_operands): Ditto.
(note_addressable): Ditto.
* tree-ssa-structalias.c (set_uids_in_ptset): Ditto.
* tree-ssa.c (verify_flow_insensitive_alias_info): Use
referenced_var iterator.
Use DECL_UID.
(delete_tree_ssa): Ditto.
(int_tree_map_eq): New function.
(int_tree_map_hash): Ditto.
* tree-stdarg.c (find_va_list_reference): Use DECL_UID.
(va_list_ptr_read): Ditto.
(va_list_counter_struct_op): Ditto.
(va_list_ptr_write): Ditto.
(check_va_list_escapes): Ditto.
(check_all_va_list_escapes): Ditto.
(execute_optimize_stdarg): Ditto.
* tree-tailcall.c (suitable_for_tail_opt_p): Used referenced_var
iterator.
2005-06-30  Daniel Berlin  <dberlin@dberlin.org>

* hashtab.h (HTAB_DELETED_ENTRY): New macro.
(HTAB_EMPTY_ENTRY): New macro.

2005-06-30  Daniel Berlin  <dberlin@dberlin.org>

* hashtab.c (EMPTY_ENTRY): Moved and renamed.
(DELETED_ENTRY): Ditto.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101480 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-30 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Thu, 30 Jun 2005 22:13:07 +0000 (22:13 +0000)]
2005-06-30  Andrew Pinski  <pinskia@physics.uc.edu>

        * config/rs6000/darwin.h (FRAME_POINTER_REGNUM): Rename to ...
        (HARD_FRAME_POINTER_REGNUM): this.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101478 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * include/ext/pb_assoc/detail/hash_fn/mask_based_range_hashing.hpp
uweigand [Thu, 30 Jun 2005 21:33:31 +0000 (21:33 +0000)]
* include/ext/pb_assoc/detail/hash_fn/mask_based_range_hashing.hpp
(PB_ASSOC_CLASS_C_DEC::s_highest_bit_1): Cast constant 1 to target
type before shifting.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101477 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * ipa-inline.c (cgraph_clone_inlined_nodes): Revert previous patch.
hubicka [Thu, 30 Jun 2005 20:52:30 +0000 (20:52 +0000)]
* ipa-inline.c (cgraph_clone_inlined_nodes): Revert previous patch.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101476 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR middle-end/22247
fxcoudert [Thu, 30 Jun 2005 20:43:45 +0000 (20:43 +0000)]
PR middle-end/22247
* tree-ssa-structalias.c (build_constraint_graph, scc_visit,
process_unification_queue, init_topo_info, topo_visit,
init_scc_info, free_scc_info, perform_var_substitution,
solve_graph): Use unsigned instead of uint.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101475 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * function.c (gen_stack_protect_test): Add third argument.
jakub [Thu, 30 Jun 2005 19:12:11 +0000 (19:12 +0000)]
* function.c (gen_stack_protect_test): Add third argument.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101473 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * gnu/classpath/jdwp/transport/JdwpPacket.java (write): New method.
kseitz [Thu, 30 Jun 2005 18:05:10 +0000 (18:05 +0000)]
    * gnu/classpath/jdwp/transport/JdwpPacket.java (write): New method.
        (myWrite): New abstract method.
        (toBytes): Remove.
        (myToBytes): Remove.
        * gnu/classpath/jdwp/transport/JdwpReplyPacket.java (myWrite): New
        method.
        * gnu/classpath/jdwp/transport/JdwpCommandPacket.java (myWrite): New
        method.
        * gnu/classpath/jdwp/transport/JdwpConnection.java (sendPacket): Use
        JdwpPacket.write instead of JdwpPacket.toBytes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101472 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * gnu/classpath/jdwp/transport/JdwpConnection.java (sendEvent): New
kseitz [Thu, 30 Jun 2005 18:00:25 +0000 (18:00 +0000)]
    * gnu/classpath/jdwp/transport/JdwpConnection.java (sendEvent): New
        method.
        (_bytes): New member.
        (_doStream): New member.
        (JdwpConnection): Initialize new members.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101471 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-30 J. D. Johnston <jjohnst@us.ibm.com>
uweigand [Thu, 30 Jun 2005 16:07:24 +0000 (16:07 +0000)]
2005-06-30  J. D. Johnston  <jjohnst@us.ibm.com>

* gthr-tpf.h (CE2THRCPTR): Change field offset to 16.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101470 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/c4x/c4x-protos.h: Remove the prototypes for those
kazu [Thu, 30 Jun 2005 15:55:35 +0000 (15:55 +0000)]
* config/c4x/c4x-protos.h: Remove the prototypes for those
functions removed from c4x.c.  Add prototypes for those
functions exported in c4x.c.
* config/c4x/c4x.c (any_operand, fp_zero_operand,
const_operand, stik_const_operand, not_const_operand,
reg_operand, r0r1_reg_operand, r2r3_reg_operand,
ext_low_reg_operand, ext_reg_operand, std_reg_operand,
std_or_reg_operand, addr_reg_operand, index_reg_operand,
dp_reg_operand, sp_reg_operand, st_reg_operand,
rc_reg_operand, call_address_operand,
symbolic_address_operand, dst_operand, src_operand,
src_hi_operand, lsrc_operand, tsrc_operand,
nonimmediate_src_operand, nonimmediate_lsrc_operand,
reg_or_const_operand, par_ind_operand, parallel_operand):
Remove.
(c4x_immed_float_p, c4x_a_register, c4x_x_register,
c4x_K_constant, c4x_N_constant, c4x_O_constant,
c4x_S_indirect): Export.
* config/c4x/c4x.h (PREDICATE_CODES): Remove.
* config/c4x/c4x.md: Include predicates.md.
* config/c4x/predicates.md: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101469 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * function.c (stack_protect_epilogue): Pass label to
jakub [Thu, 30 Jun 2005 14:30:21 +0000 (14:30 +0000)]
* function.c (stack_protect_epilogue): Pass label to
stack_protect_test, assume it emitted also the conditional
branch.
* doc/md.texi (stack_protect_test): Adjust documentation.
* config/i386/i386.md (stack_protect_test): Add third argument,
emit beq with operands[2].
* config/rs6000/rs6000.h (FRAME_GROWS_DOWNWARD): Define to
flag_stack_protect != 0.
* config/rs6000/rs6000.md (UNSPEC_SP_SET, UNSPEC_SP_TEST): New
constants.
(stack_protect_set, stack_protect_test): New expanders.
(stack_protect_setsi, stack_protect_setdi, stack_protect_testsi,
stack_protect_testdi): New insns.
* config/rs6000/rs6000.c (rs6000_stack_protect_fail): New function.
(TARGET_STACK_PROTECT_FAIL): Define.
(rs6000_generate_compare): Handle UNSPEC_SP_TEST.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101468 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Increment.
jakub [Thu, 30 Jun 2005 14:26:32 +0000 (14:26 +0000)]
* config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Increment.
(DWARF_FRAME_REGISTERS, DWARF_REG_TO_UNWIND_COLUMN): Adjust, so
that addition of sfp doesn't change these.
(FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS,
REG_ALLOC_ORDER): Add sfp.
(INT_REGNO_P): Include FRAME_POINTER_REGNUM.
(FRAME_POINTER_REGNUM): Define to 113.
(HARD_FRAME_POINTER_REGNUM): Define to 31.
(REG_CLASS_CONTENTS, REGNO_REG_CLASS): Add sfp.
(STARTING_FRAME_OFFSET): Set to 0 for FRAME_GROWS_DOWNWARD.
(ELIMINABLE_REGS): Never eliminate to
FRAME_POINTER_REGNUM, but HARD_FRAME_POINTER_REGNUM
instead.  Add eliminations from FRAME_POINTER_REGNUM.
(REGNO_OK_FOR_INDEX_P, REGNO_OK_FOR_BASE_P, INT_REG_OK_FOR_INDEX_P):
Include FRAME_POINTER_REGNUM.
(REGISTER_NAMES): Add sfp.
* config/rs6000/rs6000.c (rs6000_reg_names): Add sfp.
(alt_reg_names): Likewise.
(rs6000_stack_info): Handle FRAME_GROWS_DOWNWARD.
(rs6000_emit_prologue): Use HARD_FRAME_POINTER_REGNUM
instead of FRAME_POINTER_REGNUM.
(rs6000_initial_elimination_offset): Never eliminate to
FRAME_POINTER_REGNUM, but HARD_FRAME_POINTER_REGNUM
instead.  Add elimination offsets from FRAME_POINTER_REGNUM.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101467 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/rs6000/sysv4.h (RS6000_VARARGS_AREA): Only return non-zero
jakub [Thu, 30 Jun 2005 14:22:41 +0000 (14:22 +0000)]
* config/rs6000/sysv4.h (RS6000_VARARGS_AREA): Only return non-zero
if DEFAULT_ABI == ABI_V4.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101466 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * coretypes.h (tls_model): Add TLS_MODEL_NONE as 0.
steven [Thu, 30 Jun 2005 12:17:52 +0000 (12:17 +0000)]
* coretypes.h (tls_model): Add TLS_MODEL_NONE as 0.
* tree.h (struct tree_decl): New field `tls_model'.
(DECL_TLS_MODEL): New.
(DECL_THREAD_LOCAL_P): Rename from DECL_THREAD_LOCAL, make it
a predicate.
* rtl.h (decl_default_tls_model): Add prototype for it.
* varasm.c (decl_tls_model): Rewritten and renamed to ...
(decl_default_tls_model): ... this.
(default_encode_section_info): Use DECL_TLS_MODEL instead of
decl_tls_model.
(assemble_variable): Replace DECL_THREAD_LOCAL with
DECL_THREAD_LOCAL_P.
(default_section_type_flags_1): Likewise.
(categorize_decl_for_section): Likewise.
* tree.c (staticp): Likewise.
(recompute_tree_invarant_for_addr_expr): Likewise.
* drawf2out (loc_descriptor_from_tree_1): Likewise.
* c-decl.c (diagnose_mismatched_decls): Likewise.
with DECL_THREAD_LOCAL_P.
(start_decl): Likewise.
* print-tree.c (print_node): Likewise.  Print the TLS model.
(grokdeclarator): Set the default DECL_TLS_MODEL here.
* c-common.c (handle_tls_model_attribute): Rewrite to set the
TLS model up based on the attribute.  Never add the attribute
to the decl's attributes list.
* config/sparc/sol2.h (ASM_DECLARE_OBJECT_NAME): Replace
DECL_THREAD_LOCAL with DECL_THREAD_LOCAL_P.

cp/
* decl.c (start_decl): Replace DECL_THREAD_LOCAL with
DECL_THREAD_LOCAL_P.
(cp_finish_decl): Likewise.
(grokvardecl): Set the default DECL_TLS_MODEL here.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101465 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR testsuite/21967
rakdver [Thu, 30 Jun 2005 11:06:32 +0000 (11:06 +0000)]
PR testsuite/21967
* tree-ssa-live.c (mark_all_vars_used_1): Ignore variables in
TMR_ORIGINAL.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101462 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/bfin/bfin.md (addv2hi3, subv2hi3, sminv2hi3, smaxv2hi3,
bernds [Thu, 30 Jun 2005 07:57:05 +0000 (07:57 +0000)]
* config/bfin/bfin.md (addv2hi3, subv2hi3, sminv2hi3, smaxv2hi3,
mulv2hi3, negv2hi2, absv2hi2): Pattern names fixed by appending the
necessary digit.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101461 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * g++.dg/other/ucnid-1.C: xfail on AIX.
dje [Thu, 30 Jun 2005 04:11:49 +0000 (04:11 +0000)]
    * g++.dg/other/ucnid-1.C: xfail on AIX.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101455 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/rs6000/rs6000.c (rs6000_file_start): Use PPC405_ERRATUM77.
dje [Thu, 30 Jun 2005 03:48:22 +0000 (03:48 +0000)]
    * config/rs6000/rs6000.c (rs6000_file_start): Use PPC405_ERRATUM77.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101454 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoUpdate FSF address
kcook [Thu, 30 Jun 2005 03:22:09 +0000 (03:22 +0000)]
Update FSF address

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101453 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago PR 22234
dnovillo [Thu, 30 Jun 2005 00:51:17 +0000 (00:51 +0000)]
PR 22234
* tree-ssa-copy.c (fini_copy_prop): Do not overwrite copy_of
when following copy-of chains.

testsuite/ChangeLog

PR 22234
* gcc.dg/20050629-1.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101450 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * function.h (struct function): Add saved blocks/unexpanded var list.
hubicka [Thu, 30 Jun 2005 00:47:49 +0000 (00:47 +0000)]
* function.h (struct function): Add saved blocks/unexpanded var list.
* gimple-low.c (record_vars): Insert only VAR_DECLs.
* tree-inline.c (add_lexical_block): Declare; do not clear sublocks.
(remap_decl): Do not declare vars.
(remap_block): Do not care inserting blocks.
(remap_blocks): New function.
(copy_body_r): Update debug info.
(expand_call_inline): Duplicate callee block tree into caller;
copy all the unexpanded_var_list.
(save_body): Save unexpanded_var_list and blocks.
* tree-optimize.c (tree_rest_of_optimization): Restore
blocks/unexpanded_var_list.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101449 138bc75d-0d04-0410-961f-82ee72b054a4

19 years agoDaily bump.
gccadmin [Thu, 30 Jun 2005 00:16:30 +0000 (00:16 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101447 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/ia64/ia64.c (ia64_expand_vecint_minmax): Use us_minus and
rth [Wed, 29 Jun 2005 22:22:13 +0000 (22:22 +0000)]
    * config/ia64/ia64.c (ia64_expand_vecint_minmax): Use us_minus and
        plus for V4HImode UMAX.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101441 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * c-tree.h (default_function_array_conversion): Take and return
jsm28 [Wed, 29 Jun 2005 22:13:56 +0000 (22:13 +0000)]
* c-tree.h (default_function_array_conversion): Take and return
struct c_expr.
* c-typeck.c (default_function_array_conversion): Split into
array_to_pointer_conversion and function_to_pointer_conversion.
Take and return struct c_expr.
(array_to_pointer_conversion): Do not handle type qualifiers or
COMPOUND_EXPRs specially.
(build_function_call): Call function_to_pointer_conversion for
function designators.
(build_unary_op): Call array_to_pointer_conversion, not
default_function_array_conversion.
(digest_init, output_init_element): Likewise.
* c-parser.c: All callers of default_function_array_conversion
changed.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101440 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-29 Paolo Carlini <pcarlini@suse.de>
paolo [Wed, 29 Jun 2005 22:12:18 +0000 (22:12 +0000)]
2005-06-29  Paolo Carlini  <pcarlini@suse.de>

PR libstdc++/21244 (cont^2)
* include/ext/bitmap_allocator.h: Convert everywhere
bits_per_block to size_t.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101438 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago[gcc/ChangeLog]
zlaski [Wed, 29 Jun 2005 21:01:29 +0000 (21:01 +0000)]
[gcc/ChangeLog]
2005-06-29  Ziemowit Laski  <zlaski@apple.com>

        * config/darwin.c (machopic_select_section): constant ObjC string
        objects now always have type "__builtin_ObjCString".

[gcc/objc/ChangeLog]
2005-06-29  Ziemowit Laski  <zlaski@apple.com>

        * objc-act.c (objc_build_internal_const_str_type): New function.
        (check_string_class_template): Use objc_get_class_ivars() instead
        of TYPE_FIELDS() to retrieve ivar list.
        (AT_LEAST_AS_LARGE_AS): Check the size of each field's type rather
        than the field itself.
        (objc_build_string_object): Synthesize a "__builtin_ObjCString"
        type and use it to lay out compile-time string objects.
        * objc-act.h (OCTI_INTERNAL_CNST_STR_TYPE, internal_const_str_type):
        New.

[gcc/testsuite/ChangeLog]
2005-06-29  Ziemowit Laski  <zlaski@apple.com>

        * obj-c++.dg/const-str-1[0-1].mm: New.
        * objc.dg/const-str-1[0-1].m: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101437 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * lib/target-supports.exp (check_effective_target_vect_no_int_max):
rth [Wed, 29 Jun 2005 18:25:12 +0000 (18:25 +0000)]
    * lib/target-supports.exp (check_effective_target_vect_no_int_max):
        Rename from check_effective_target_vect_no_max.
        (check_effective_target_vect_no_int_add): New.
        * gcc.dg/vect/vect-13.c: Use vect_no_int_max.
        * gcc.dg/vect/vect-91.c: Use vect_no_int_add.
        * gcc.dg/vect/vect-reduc-3.c: Likewise.
        * gcc.dg/vect/vect-reduc-1.c: Use both.
        * gcc.dg/vect/vect-reduc-2.c: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101435 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * config/alpha/alpha.md (vec_shl_<VEC>, vec_shr_<VEC>): New.
rth [Wed, 29 Jun 2005 18:22:06 +0000 (18:22 +0000)]
    * config/alpha/alpha.md (vec_shl_<VEC>, vec_shr_<VEC>): New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101434 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago * tree-vect-transform.c (vect_min_worthwhile_factor): Declare.
rth [Wed, 29 Jun 2005 18:13:27 +0000 (18:13 +0000)]
    * tree-vect-transform.c (vect_min_worthwhile_factor): Declare.
        (vect_create_epilog_for_reduction): Don't use vec_shr if the
        operation is emulated.
        (vectorizable_reduction): Duplicate vect_min_worthwhile_factor
        tests from vectorizable_operation.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101433 138bc75d-0d04-0410-961f-82ee72b054a4

19 years ago2005-06-29 Caroline Tice <ctice@apple.com>
ctice [Wed, 29 Jun 2005 17:47:31 +0000 (17:47 +0000)]
2005-06-29  Caroline Tice  <ctice@apple.com>

        Fix PR 21956
        * varasm.c (assemble_start_function):  Add "L" to beginning of
        local labels, so assembler & linker treat them as local.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101432 138bc75d-0d04-0410-961f-82ee72b054a4