OSDN Git Service

pf3gnuchains/gcc-fork.git
17 years ago PR target/26427
mrs [Thu, 8 Jun 2006 22:23:17 +0000 (22:23 +0000)]
PR target/26427
* config/darwin.c (darwin_asm_output_anchor): Disable
-fsection-anchors on darwin for now.
* config/darwin.h (TARGET_ASM_OUTPUT_ANCHOR): Likewise.
* rs6000/rs6000.c (optimization_options): Likewise.

testsuite:
* gcc.dg/pr26427.c: Test to ensure that -fsection-anchors doesn't
produce bad code on darwin.

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

17 years ago2006-06-09 Andreas Tobler <a.tobler@schweiz.ch>
andreast [Thu, 8 Jun 2006 22:06:46 +0000 (22:06 +0000)]
2006-06-09  Andreas Tobler  <a.tobler@schweiz.ch>

* scripts/jar.in: Replace hardcoded /bin/sh with @SHELL@.

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

17 years ago PR fortran/27958
fxcoudert [Thu, 8 Jun 2006 21:48:05 +0000 (21:48 +0000)]
PR fortran/27958

* trans-expr.c (gfc_conv_substring): If the substring start is
greater than its end, the length of the substring is zero, and
not negative.
(gfc_trans_string_copy): Don't generate a call to
_gfortran_copy_string when destination length is zero.

* gcc/testsuite/gfortran.dg/substr_2.f: New test.

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

17 years ago * cray_pointers_2.f90: Add -fbounds-check compile flag.
langton [Thu, 8 Jun 2006 21:00:26 +0000 (21:00 +0000)]
* cray_pointers_2.f90: Add -fbounds-check compile flag.

PR fortran/27786
* trans-array.c (gfc_conv_array_ref): Eliminate bounds checking
for assumed-size Cray pointees.

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

17 years ago PR target/27421
reichelt [Thu, 8 Jun 2006 20:50:24 +0000 (20:50 +0000)]
PR target/27421
* config/i386/i386.c (classify_argument): Skip fields with invalid
types in unions.

* gcc.dg/union-3.c: New test.

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

17 years ago * cse.c (flush_hash_table): Use VOIDmode to invalidate a REG.
steven [Thu, 8 Jun 2006 19:22:07 +0000 (19:22 +0000)]
    * cse.c (flush_hash_table): Use VOIDmode to invalidate a REG.
        (cse_insn): Likewise for the stack_pointer_rtx.

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

17 years ago2006-06-08 Steven G. Kargl <kargls@comcat.net>
kargl [Thu, 8 Jun 2006 17:51:47 +0000 (17:51 +0000)]
2006-06-08  Steven G. Kargl  <kargls@comcat.net>

        * intrinsic.c (add_subroutine):  Make make_noreturn() conditional on
        the appropriate symbol name.

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

17 years ago * tree-ssa-dom.c (record_conditions): Only record "unordered"
sayle [Thu, 8 Jun 2006 16:48:30 +0000 (16:48 +0000)]
* tree-ssa-dom.c (record_conditions): Only record "unordered"
conditions from floating point comparisons.

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

17 years ago2006-06-08 Paolo Bonzini <bonzini@gnu.org>
bonzini [Thu, 8 Jun 2006 15:40:48 +0000 (15:40 +0000)]
2006-06-08  Paolo Bonzini  <bonzini@gnu.org>

PR middle-end/27733
* expmed.c (struct alg_hash_entry): Fix type of field T
to match synth_mult argument.
(NUM_ALG_HASH_ENTRIES): Make it bigger for 64-bit HOST_WIDE_INT.

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

17 years ago2006-06-08 Andrew Haley <aph@redhat.com>
aph [Thu, 8 Jun 2006 14:01:40 +0000 (14:01 +0000)]
2006-06-08  Andrew Haley  <aph@redhat.com>

        * expr.c (build_field_ref): Pass NULL_TREE as SPECIAL arg to
        get_symbol_table_index().
        (maybe_rewrite_invocation): Set SPECIAL if we need to access a
        private method.
        (build_known_method_ref): New arg: special.  Pass it to
        get_symbol_table_index.
        (get_symbol_table_index): Put SPECIAL in the TREE_PURPOSE field of
        the method list.
        (build_invokevirtual): New arg: special.  Pass it to
        get_symbol_table_index.
        (expand_invoke): New variable: special.
        Pass it to maybe_rewrite_invocation().
        Pass it to build_known_method_ref().
        * class.c (build_symbol_entry): Add new arg: special.  Use it to
        build the symbol table conbstructor.
        (emit_symbol_table): Extract SPECIAL from the method list and pass
        it to build_symbol_entry().
        * parse.y (patch_invoke): Call maybe_rewrite_invocation() and set
        special accordingly.

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

17 years ago2006-06-07 Andrew Haley <aph@redhat.com>
aph [Thu, 8 Jun 2006 14:00:43 +0000 (14:00 +0000)]
2006-06-07  Andrew Haley  <aph@redhat.com>

        * include/jvm.h (_Jv_Linker::maybe_adjust_signature): New.
        (_Jv_Linker::uaddr): New.
        * link.cc (resolve_pool_entry): Call search_method_in_superclasses
        instead of an open-coded loop around search_method_in_class.
        (search_method_in_class): Add a new arg, check_perms.
        (search_method_in_superclasses): New.
        (link_symbol_table): Call maybe_adjust_signature() to extract the
        least significnt bit of the signature pointer.  Do this three
        times, for instace method calls, static methods, and interfaces.
        Call search_method_in_superclasses() instead of
        _Jv_LookupDeclaredMethod.
        (typedef uaddr): Delete.

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

17 years ago2006-06-08 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
mkuvyrkov [Thu, 8 Jun 2006 08:51:13 +0000 (08:51 +0000)]
2006-06-08  Maxim Kuvyrkov  <mkuvyrkov@ispras.ru>

PR target/27863
* haifa-sched.c (unlink_other_notes, unlink_line_notes): Update basic
block boundaries.

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

17 years ago2006-06-08 Richard Guenther <rguenther@suse.de>
rguenth [Thu, 8 Jun 2006 08:49:19 +0000 (08:49 +0000)]
2006-06-08  Richard Guenther  <rguenther@suse.de>

PR middle-end/27116
* fold-const.c (negate_expr_p): We can negate BIT_NOT_EXPR
only, if overflow is defined and not trapping.
(negate_expr): Likewise.

* gcc.dg/torture/pr27116.c: New testcase.
* gcc.dg/pr15785-1.c: Remove test for invalid transformation.

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

17 years ago PR tree-optimization/27872
rakdver [Thu, 8 Jun 2006 08:19:50 +0000 (08:19 +0000)]
PR tree-optimization/27872
* tree-ssa-loop-manip.c (tree_unroll_loop): Set EDGE_IRREDUCIBLE_LOOP
flag on the new exit edge of the unrolled loop.

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

17 years ago PR rtl-optimization/26449
rakdver [Thu, 8 Jun 2006 08:17:05 +0000 (08:17 +0000)]
PR rtl-optimization/26449
* loop-invariant.c (move_invariant_reg): Fail if force_operand fails.

* gcc.dg/pr26449.c: New test.

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

17 years ago2006-06-07 Andrew MacLeod <amacleod@redhat.com>
amacleod [Thu, 8 Jun 2006 01:18:16 +0000 (01:18 +0000)]
2006-06-07  Andrew MacLeod  <amacleod@redhat.com>

PR middle-end/27793
* tree-dfa.c (referenced_vars_dup_list): New.  List of duplicate
referenced_variables with matching DECL_UID's.
(find_referenced_vars): Make sure duplicate list is empty to start.
(referenced_var_p): Remove.
(referenced_var_check_and_insert): Renamed from referenced_var_insert.
Check if var is in the list, and add if needed.  Update the duplicate
list if a different var is in the list with the same DECL_UID.
(add_referenced_var): Call routine to check and insert.
* tree-ssa.c (delete_tree_ssa): Clear var_ann's on duplicates.
* tree-flow.h (referenced_vars_dup_list): External declaration.

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

17 years agoDaily bump.
gccadmin [Thu, 8 Jun 2006 00:17:48 +0000 (00:17 +0000)]
Daily bump.

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

17 years agoWhitespace fixes.
dj [Wed, 7 Jun 2006 23:30:43 +0000 (23:30 +0000)]
Whitespace fixes.

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

17 years ago2006-06-07 Thomas Fitzsimmons <fitzsim@redhat.com>
fitzsim [Wed, 7 Jun 2006 21:46:24 +0000 (21:46 +0000)]
2006-06-07  Thomas Fitzsimmons  <fitzsim@redhat.com>

* scripts/makemake.tcl (emit_bc_rule): Do not skip
gnu-java-awt-peer-qt.lo.
* configure.ac (QT_AWT): Remove conditional.
Do not add gnu/java/awt/peer/qt to standard.omit.
* classpath/native/jni/qt-peer/Makefile.am: Install libqtpeer.so
in GCJ's versioned library directory.
* classpath/gnu/java/awt/peer/qt/QtToolkit.java (initToolkit):
Load libqtpeer.so unconditionally.
* gij.cc (main): Do not re-exec gij.
* Makefile.am: Remove lib-gnu-java-awt-peer-qt.lo build logic.
(gij_LDFLAGS): Point -rpath at GCJ's versioned library directory
when linking gij.

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

17 years ago * config/mips/t-elf (MULTILIB_MATCHES): Combine two entries
ths [Wed, 7 Jun 2006 17:46:23 +0000 (17:46 +0000)]
* config/mips/t-elf (MULTILIB_MATCHES): Combine two entries
into single entry.

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

17 years ago PR c++/27601
reichelt [Wed, 7 Jun 2006 16:08:30 +0000 (16:08 +0000)]
PR c++/27601
* cp-tree.h (finish_offsetof): Add prototype.
* semantics.c (finish_offsetof): New function.
* parser.c (cp_parser_builtin_offsetof): Call it instead of
fold_offsetof.
* pt.c (tsubst_copy_and_build): Likewise.

* g++.dg/ext/offsetof1.C: Test member functions.

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

17 years ago * Makefile.in (install-info, install-dvi, install-ps, install-pdf):
drow [Wed, 7 Jun 2006 15:44:09 +0000 (15:44 +0000)]
* Makefile.in (install-info, install-dvi, install-ps, install-pdf):
New dummy targets.

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

17 years ago * gcc.dg/pr27095.c: Improve scanning.
sje [Wed, 7 Jun 2006 15:27:24 +0000 (15:27 +0000)]
* gcc.dg/pr27095.c: Improve scanning.

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

17 years ago2006-06-06 Benjamin Kosnik <bkoz@redhat.com>
bkoz [Wed, 7 Jun 2006 14:58:24 +0000 (14:58 +0000)]
2006-06-06  Benjamin Kosnik  <bkoz@redhat.com>

* testsuite/util: New directory.
* testsuite/testsuite_hooks.cc: Move to util sub-directory.
* testsuite/testsuite_abi_check.cc: Same.
* testsuite/testsuite_abi.cc: Same.
* testsuite/testsuite_tr1.h: Same.
* testsuite/testsuite_io.h: Same.
* testsuite/testsuite_iterators.h: Same.
* testsuite/testsuite_allocator.cc: Same.
* testsuite/testsuite_allocator.h: Same.
* testsuite/testsuite_hooks.h: Same.
* testsuite/testsuite_character.cc: Same.
* testsuite/testsuite_abi.h: Same.
* testsuite/testsuite_character.h: Same.
* testsuite/testsuite_visualization.h: Same.
* testsuite/testsuite_performance.h: Same.
* testsuite/testsuite_shared.cc: Same.
* testsuite/testsuite_common_types.h: Same.

* testsuite/lib/libstdc++.exp (v3-build_support): Adjust paths.
* testsuite/libstdc++-abi/abi.exp: Same.
* testsuite/libstdc++-dg/conformance.exp: Remove any files in the
utilities subdirectory from the list of test cases.

* scripts/testsuite_flags.in (build-includes): Adjust path for
testsuite includes.
* scripts/create_testsuite_files (dlist): Don't let utility files
creep into the testsuite_files list.

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

17 years ago2006-06-07 Paolo Bonzini <bonzini@gnu.org>
bonzini [Wed, 7 Jun 2006 12:07:24 +0000 (12:07 +0000)]
2006-06-07  Paolo Bonzini  <bonzini@gnu.org>

PR target/27390
* reg-stack.c (subst_stack_regs_pat): Reorder resetting of
the imaginary and real parts of a clobbered register.
Emit insn to set the imaginary part.

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

17 years ago2006-06-07 Paul Thomas <pault@gcc.gnu.org>
pault [Wed, 7 Jun 2006 07:20:39 +0000 (07:20 +0000)]
2006-06-07  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/23091
* resolve.c (resolve_fl_variable): Error if an automatic
object has the SAVE attribute.

PR fortran/24168
* expr.c (simplify_intrinsic_op): Transfer the rank and
the locus to the simplified expression.

PR fortran/25090
PR fortran/25058
* gfortran.h : Add int entry_id to gfc_symbol.
* resolve.c : Add static variables current_entry_id and
specification_expr.
(resolve_variable): During code resolution, check if a
reference to a dummy variable in an executable expression
is preceded by its appearance as a parameter in an entry.
Likewise check its specification expressions.
(resolve_code): Update current_entry_id on EXEC_ENTRY.
(resolve_charlen, resolve_fl_variable): Set and reset
specifiaction_expr.
(is_non_constant_shape_array): Do not return on detection
of a variable but continue to resolve all the expressions.
(resolve_codes): set current_entry_id to an out of range
value.

2006-06-07  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/23091
* gfortran.dg/saved_automatic_1.f90: New test.

PR fortran/24168
* gfortran.dg/array_simplify_1.f90: New test.

PR fortran/25090
* gfortran.dg/entry_dummy_ref_1.f90: New test.

PR fortran/25058
* gfortran.dg/entry_dummy_ref_2.f90: New test.

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

17 years ago2006-06-06 Paolo Carlini <pcarlini@suse.de>
paolo [Wed, 7 Jun 2006 01:50:09 +0000 (01:50 +0000)]
2006-06-06  Paolo Carlini  <pcarlini@suse.de>

* include/tr1/random (mersenne_twister<>::operator==,
operator!=, operator<<, operator>>): Implement.
* testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
operators/equal.cc: New.
* testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
operators/not_equal.cc: Likewise.
* testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
operators/serialize.cc: Likewise.

* include/tr1/random (subtract_with_carry<>::operator==): Fix,
compare the whole state; use std::equal.

* include/tr1/random: Minor formatting and style changes.

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

17 years agoDaily bump.
gccadmin [Wed, 7 Jun 2006 00:17:21 +0000 (00:17 +0000)]
Daily bump.

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

17 years ago2006-06-06 Benjamin Kosnik <bkoz@redhat.com>
bkoz [Tue, 6 Jun 2006 22:42:27 +0000 (22:42 +0000)]
2006-06-06  Benjamin Kosnik  <bkoz@redhat.com>

* testsuite/tr1/5_numerical_facilies: Move to...
* testsuite/tr1/5_numerical_facilities: ...this.

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

17 years ago PR c++/27177
mmitchel [Tue, 6 Jun 2006 21:38:54 +0000 (21:38 +0000)]
PR c++/27177
* call.c (standard_conversion): Require that the derived type be
complete when performing a derived-to-base conversion.
PR c++/27177
* g++.dg/expr/cast7.C: New test.

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

17 years ago * lib/gcc-dg.exp (gcc-dg-test-1): Detect and report ICE.
janis [Tue, 6 Jun 2006 19:16:14 +0000 (19:16 +0000)]
* lib/gcc-dg.exp (gcc-dg-test-1): Detect and report ICE.
* lib/gcc-defs.exp (tool_check_compile): Ditto.
* lib/fortran-torture.exp (fortran-torture-compile,
fortran-torture-execute): Ditto.

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

17 years ago2006-06-06 Carlos O'Donell <carlos@codesourcery.com>
carlos [Tue, 6 Jun 2006 19:01:18 +0000 (19:01 +0000)]
2006-06-06  Carlos O'Donell <carlos@codesourcery.com>

Sync from src:

* configure.in: Sync.
* configure: Regenerated.

2006-05-31  Daniel Jacobowitz  <dan@codesourcery.com>

* Makefile.def: Added dependencies from sim and gdb on intl, and
added configure dependencies to everything with an all dependency
on intl.
* Makefile.in: Regenerated.

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

17 years ago2006-06-06 Peter Lemieszewski <lemie@us.ibm.com>
uweigand [Tue, 6 Jun 2006 18:11:44 +0000 (18:11 +0000)]
2006-06-06  Peter Lemieszewski  <lemie@us.ibm.com>

* config/s390/t-tpf (LIB2ADDEH): Include unwind-dw2-fde-glibc.c
in lieu of unwind-dw2-fde.c.

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

17 years ago * config/mingw32/time.c: New file.
fxcoudert [Tue, 6 Jun 2006 17:54:02 +0000 (17:54 +0000)]
* config/mingw32/time.c: New file.
* configure.tgt: Use it.

* config/i386/mingw32.h (GOMP_SELF_SPECS): Define.

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

17 years ago2006-06-06 Paolo Carlini <pcarlini@suse.de>
paolo [Tue, 6 Jun 2006 17:37:33 +0000 (17:37 +0000)]
2006-06-06  Paolo Carlini  <pcarlini@suse.de>

* include/tr1/random: Trivial uglification fixes.
* include/tr1/random.tcc: Likewise.

* include/tr1/random (subtract_with_carry<>::
subtract_with_carry(_IntType)): Fix parameter type to unsigned long.
(subtract_with_carry<>::seed(_IntType)): Likewise.
* include/tr1/random.tcc (subtract_with_carry<>::seed(_IntType)):
Adjust.

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

17 years ago PR target/27842
uweigand [Tue, 6 Jun 2006 17:01:27 +0000 (17:01 +0000)]
PR target/27842
* config/rs6000/altivec.md (UNSPEC_VSLW): Remove.
("altivec_vspltisw_v4sf", "altivec_vslw_v4sf"): Remove.
("mulv4sf3", "absv4sf3", "negv4sf3"): Adapt users to use
V4SImode temporaries and operations instead.

PR target/27842
* gcc.dg/vmx/pr27842.c: New test.

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

17 years ago2006-06-05 David Daney <ddaney@avtrex.com>
daney [Tue, 6 Jun 2006 17:00:16 +0000 (17:00 +0000)]
2006-06-05  David Daney  <ddaney@avtrex.com>

* gcj.texi (libgcj Runtime Properties): Document
gnu.gcj.runtime.NameFinder.show_raw and
gnu.gcj.runtime.NameFinder.remove_unknown.

2006-06-05  David Daney  <ddaney@avtrex.com>

* gnu/gcj/runtime/NameFinder.java (show_raw): New field.
(showRaw): New method.
* stacktrace.cc : Include gnu/gcj/runtime/StringBuffer.h.
(getLineNumberForFrame): Show IP offset in trace if line number
not available and show_raw true.

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

17 years ago * jcf-dump.c (print_access_flags): Handle varargs, bridge,
tromey [Tue, 6 Jun 2006 16:44:30 +0000 (16:44 +0000)]
* jcf-dump.c (print_access_flags): Handle varargs, bridge,
synthetic, enum, annotation.
* jcf.h (ACC_BRIDGE): New macro.
(ACC_VARARGS): Likewise.
(ACC_SYNTHETIC): Likewise.
(ACC_ENUM): Likewise.
(ACC_ANNOTATION): Likewise.

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

17 years ago2006-06-06 David Ayers <d.ayers@inode.at>
ayers [Tue, 6 Jun 2006 16:05:47 +0000 (16:05 +0000)]
2006-06-06  David Ayers  <d.ayers@inode.at>

PR libobjc/13946
* Makefile.def: Add dependencies for libobjc which boehm-gc.
* Makefile.in: Regenerate.
* configure.in: Add --enable-objc-gc at toplevel and have it
enable boehm-gc for Objective-C.
Remove target-boehm-gc from libgcj.
Add target-boehm-gc to target_libraries.
Add target-boehm-gc to noconfigdirs where ${libgcj}
is specified.
Assert that boehm-gc is supported when requested for Objective-C.
Only build boehm-gc if needed either for Java or Objective-C.
* configure: Regenerate.

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

17 years ago * java/io/natFilePosix.cc (getCanonicalPath): Rewritten.
gary [Tue, 6 Jun 2006 15:09:20 +0000 (15:09 +0000)]
* java/io/natFilePosix.cc (getCanonicalPath): Rewritten.
* configure.ac: Remove realpath check and add checks for
lstat and readlink.
* configure: Rebuilt.
* include/config.h.in: Likewise.
* java/io/File.java: Javadoc fix.

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

17 years ago * config/mips/t-linux64 (tp-bit.c): Append to tp-bit.c, not
jsm28 [Tue, 6 Jun 2006 12:51:24 +0000 (12:51 +0000)]
* config/mips/t-linux64 (tp-bit.c): Append to tp-bit.c, not
dp-bit.c.

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

17 years ago2006-06-06 Laurent GUERBY <laurent@guerby.net>
guerby [Tue, 6 Jun 2006 12:37:01 +0000 (12:37 +0000)]
2006-06-06  Laurent GUERBY  <laurent@guerby.net>

        PR ada/27769
        mlib-utl.adb: Use Program_Name.

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

17 years agoFix up whitespacing
mrs [Tue, 6 Jun 2006 11:44:09 +0000 (11:44 +0000)]
Fix up whitespacing

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

17 years ago * objc-act.c: Remove prototype for objc_build_volatilized_type.
mrs [Tue, 6 Jun 2006 10:22:54 +0000 (10:22 +0000)]
* objc-act.c: Remove prototype for objc_build_volatilized_type.

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

17 years ago * Makefile.in: Rename to htmldir to build_htmldir to avoid
mrs [Tue, 6 Jun 2006 10:15:12 +0000 (10:15 +0000)]
* Makefile.in: Rename to htmldir to build_htmldir to avoid
installing during build.

java,fortran:
* Make-lang.in: Rename to htmldir to build_htmldir to avoid
installing during build.

treelang:
* Make-lang.in: Rename to gcc_htmldir to build_htmldir to avoid
installing during build.

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

17 years ago2006-06-06 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
mkuvyrkov [Tue, 6 Jun 2006 09:44:17 +0000 (09:44 +0000)]
2006-06-06  Maxim Kuvyrkov  <mkuvyrkov@ispras.ru>

* params.def (PARAM_MAX_SCHED_EXTEND_REGIONS_ITERS): Change default
value to 0.
* doc/invoke.texi (max-sched-extend-regions-iters): Document.
* config/ia64/ia64.c (params.h): New header.
(ia64_optimization_options): New function to adjust parameters.
* config/ia64/ia64-protos.h (ia64_optimization_options): New prototype.
* config/ia64/ia64.h (OPTIMIZATION_OPTIONS): New macro.
* config/ia64/t-ia64 (ia64.o): Add dependence from params.h .

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

17 years ago2006-06-06 Janne Blomqvist <jb@gcc.gnu.org>
jb [Tue, 6 Jun 2006 08:10:09 +0000 (08:10 +0000)]
2006-06-06  Janne Blomqvist  <jb@gcc.gnu.org>

* m4/in_pack.m4: Add TODO comment about detecting temporaries,
remove test for stride 0, update copyright year.
* m4/transpose.m4: Remove test for stride 0, update copyright
year.
* m4/iforeach.m4: Likewise.
* m4/shape.m4: Likewise.
* m4/in_unpack.m4: Likewise.
* m4/reshape.m4: Likewise.
* m4/ifunction.m4: Likewise.
* m4/matmul.m4: Likewise.
* m4/matmull.m4: Likewise.
* intrinsics/etime.c: Likewise.
* intrinsics/transpose_generic.c: Likewise.
* intrinsics/spread_generic.c: Likewise.
* intrinsics/stat.c: Likewise.
* intrinsics/reshape_generic.c: Likewise.
* intrinsics/random.c: Likewise.
* generated/*: Regenerated from above changed m4 files.

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

17 years ago2006-06-06 Paul Thomas <pault@gcc.gnu.org>
pault [Tue, 6 Jun 2006 04:15:17 +0000 (04:15 +0000)]
2006-06-06  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/27897
* match.c (gfc_match_common):  Fix code typo.  Remove
sym->name, since sym is NULL, and replace with name.

* fortran/ChangeLog : Fix typo: 20838 to 20839.
* testsuite/ChangeLog : The same.

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

17 years agoDaily bump.
gccadmin [Tue, 6 Jun 2006 00:17:16 +0000 (00:17 +0000)]
Daily bump.

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

17 years ago PR libfortran/27895
fxcoudert [Mon, 5 Jun 2006 22:41:29 +0000 (22:41 +0000)]
PR libfortran/27895

* resolve.c (compute_last_value_for_triplet): New function.
(check_dimension): Correctly handle zero-sized array sections.
Add checking on last element of array sections.

* gfortran.dg/bounds_check_3.f90: New test.

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

17 years ago2006-06-05 Paolo Carlini <pcarlini@suse.de>
paolo [Mon, 5 Jun 2006 21:23:59 +0000 (21:23 +0000)]
2006-06-05  Paolo Carlini  <pcarlini@suse.de>

* include/tr1/random (mersenne_twister<>::seed()): Fix per
tr1/5.1.4.2, p8.
* include/tr1/random.tcc (mod_w): Add.
(mersenne_twister<>::seed(unsigned long)): Fix per tr1/5.1.4.2, p9.
(mersenne_twister<>::seed(Gen&, false_type)): Adjust to use mod_w.
* testsuite/tr1/5_numerical_facilies/random/mt19937.cc: Fix
expected result per tr1/5.1.5, p2.
* testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
cons/default.cc: Adjust.

* include/tr1/random (exponential_distribution<>::operator()()): Fix.

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

17 years ago PR libgcj/27860
schwab [Mon, 5 Jun 2006 21:21:05 +0000 (21:21 +0000)]
PR libgcj/27860
* link.cc: Check for closure support in libffi with FFI_CLOSURES.

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

17 years ago PR libgcj/27892:
tromey [Mon, 5 Jun 2006 20:32:33 +0000 (20:32 +0000)]
PR libgcj/27892:
* gij.cc (main): Use putenv.

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

17 years ago * stor-layout.c (debug_rli): Fix a typo in a debug message.
kazu [Mon, 5 Jun 2006 20:25:53 +0000 (20:25 +0000)]
* stor-layout.c (debug_rli): Fix a typo in a debug message.

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

17 years ago2006-06-05 Steven G. Kargl <kargls@comcast.net>
kargl [Mon, 5 Jun 2006 19:50:05 +0000 (19:50 +0000)]
2006-06-05  Steven G. Kargl  <kargls@comcast.net>

        * data.c (gfc_assign_data_value):  Fix comment typo.  Remove
        a spurious return.

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

17 years agoFix typo...
mrs [Mon, 5 Jun 2006 19:33:50 +0000 (19:33 +0000)]
Fix typo...

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

17 years ago * objc.dg/objc-fast-4.m: Skip for ppc64.
mrs [Mon, 5 Jun 2006 19:20:49 +0000 (19:20 +0000)]
* objc.dg/objc-fast-4.m: Skip for ppc64.

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

17 years ago2006-06-05 Paolo Bonzini <bonzini@gnu.org>
bonzini [Mon, 5 Jun 2006 17:14:23 +0000 (17:14 +0000)]
2006-06-05  Paolo Bonzini  <bonzini@gnu.org>

PR 27674
* Makefile.tpl (configure-[+prefix+][+module+],
all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
Remove rule to unstage bootstrapped modules.
(stage_current): New.
* Makefile.in: Regenerate.

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

17 years ago* dg-cmp-results.sh: New script for comparing DejaGNU logs.
jwlemke [Mon, 5 Jun 2006 15:59:03 +0000 (15:59 +0000)]
* dg-cmp-results.sh: New script for comparing DejaGNU logs.

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

17 years ago PR testsuite/27705
sje [Mon, 5 Jun 2006 15:34:08 +0000 (15:34 +0000)]
PR testsuite/27705
* gcc.dg/sibcall-7.c: Do not run on ia64-*-* platforms.

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

17 years ago PR target/27051
sje [Mon, 5 Jun 2006 15:13:01 +0000 (15:13 +0000)]
PR target/27051
* config/ia64/ia64.c (ia64_select_rtx_section): Check TARGET_NO_SDATA.

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

17 years ago PR gcc/27818:
tromey [Mon, 5 Jun 2006 15:08:56 +0000 (15:08 +0000)]
PR gcc/27818:
* Makefile.in: Rebuilt.
* Makefile.am (install-data-local): Define conditionally.

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

17 years agoChangelog:
victork [Mon, 5 Jun 2006 08:56:49 +0000 (08:56 +0000)]
Changelog:
        PR tree-optimization/26360
        * tree-vectorizer.c (destroy_loop_vec_info): Remove (dead) pattern
        stmts.

testsuite/Changelog:
        PR tree-optimizations/26360
        * gcc.dg/vect/vect.exp: Compile tests prefixed with "no-tree-dce"
        with -fno-tree-dce.
        * gcc.dg/vect/no-tree-dce-pr26360.c: New test.

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

17 years ago2006-06-05 Paul Thomas <pault@gcc.gnu.org>
pault [Mon, 5 Jun 2006 07:45:03 +0000 (07:45 +0000)]
2006-06-05  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/14067
* data.c (create_character_intializer): Add warning message
for truncated string.

PR fortran/16943
* symbol.c : Include flags.h.
(gfc_add_type): If a procedure and types are the same do not
throw an error unless standard is less than gnu or pedantic.

PR fortran/20838
* parse.c (parse_do_block): Error if named block do construct
does not have a named enddo.

PR fortran/27655
* check.c (gfc_check_associated): Pick up EXPR_NULL for pointer
as well as target and put error return at end of function.

2006-06-05  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/14067
* gfortran.dg/data_char_1.f90: Add messages for truncated
strings.

PR fortran/16943
* gfortran.dg/func_decl_2.f90: New test.

PR fortran/20838
* gfortran.dg/do_2.f90: New test.

PR fortran/27655
* gfortran.dg/associated_3.f90: New test.

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

17 years ago2006-06-05 Paolo Carlini <pcarlini@suse.de>
paolo [Mon, 5 Jun 2006 07:33:18 +0000 (07:33 +0000)]
2006-06-05  Paolo Carlini  <pcarlini@suse.de>

* include/tr1/random.tcc (Max::value()): Cast 1 to Tp(1) and
adjust shift count to w; rename as Max_w.
(struct Mod_w): New.
(mersenne_twister<>::seed(Gen&, false_type): Use the latter.
(mersenne_twister<>::operator()()): Fix ~0ul to ~_UInt().
* testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
cons/default.cc: Fix ~0ul to 2^32-1.
* testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
cons/gen1.cc: Likewise.

2006-06-05  Stephen M. Webb  <stephen.webb@bregmasoft.com>

* include/tr1/random: New.
* include/tr1/random.tcc: Likewise.
* include/Makefile.am: Add.
* testsuite/tr1/5_numerical_facilies/random/ranlux3.cc: New.
* testsuite/tr1/5_numerical_facilies/random/ranlux4.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/mt19937.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/variate_generator/
requirements/typedefs.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
cons/seed1.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
cons/seed2.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
cons/default.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
cons/gen1.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
requirements/typedefs.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
operators/equal.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
operators/not_equal.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/subtract_with_carry/
operators/serialize.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/uniform_real/
requirements/typedefs.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/discard_block/
requirements/requirements.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
cons/seed1.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
cons/seed2.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
cons/default.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
cons/gen1.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
requirements/non_uint_neg.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
requirements/typedefs.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
operators/equal.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
operators/not_equal.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/linear_congruential/
operators/serialize.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/xor_combine/
requirements/typedefs.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/minstd_rand.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/minstd_rand0.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/uniform_int/
cons/range.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/uniform_int/
cons/default.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/uniform_int/
cons/range_neg.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/uniform_int/
requirements/typedefs.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
cons/seed1.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
cons/seed2.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
cons/default.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
cons/gen1.cc: Likewise.
* testsuite/tr1/5_numerical_facilies/random/mersenne_twister/
requirements/typedefs.cc: Likewise.
* include/Makefile.in: Regenerate.
* testsuite/tr1/headers.cc: Update.

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

17 years ago PR c++/27819
mmitchel [Mon, 5 Jun 2006 02:46:38 +0000 (02:46 +0000)]
PR c++/27819
* decl.c (cp_finish_decl): Process initializers for static data
members with non-dependent initializers, even in templates.
PR c++/27722
* decl.c (maybe_deduce_size_from_array_init): If the declaration
is erroneous, give it an erroneous type.
(layout_var_decl): If the type is erroneous, give up.
(check_initializer): Likewise.
PR c++/27807
* cp-tree.h (TYPE_OBJ_P): New macro.
(TYPE_PTROB_P): Use it.
(TYPE_REF_OBJ_P): Likewise.
* semantics.c (finish_compound_literal): Do not permit compound
literals of non-object types.
PR c++/27806
* typeck.c (original_type): Robustify.
PR c++/27819
* g++.dg/template/static25.C: New test.
PR c++/27722
* g++.dg/init/array21.C: New test.
PR c++/27807
* g++.dg/ext/complit7.C: New test.

PR c++/27806
* g++.dg/parse/ptrmem5.C: New test.

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

17 years ago PR middle-end/27382
sayle [Mon, 5 Jun 2006 02:31:41 +0000 (02:31 +0000)]
PR middle-end/27382
PR c/27150
* gcc.dg/pr27150-1.c: New testcase.
* gcc.dg/pr27382-1.c: New testcase.
* gcc.dg/pr27382-2.c: New testcase.

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

17 years ago PR middle-end/27382
sayle [Mon, 5 Jun 2006 02:28:20 +0000 (02:28 +0000)]
PR middle-end/27382
* c-common.c (c_common_truthvalue_conversion): Explicitly check
for LABEL_DECL before calling DECL_WEAK.

PR c/27150
* c-typeck.c (build_binary_op): Likewise, explicitly check for
LABEL_DECL and PARM_DECL.

* gcc.dg/pr27150-1.c: New testcase.
* gcc.dg/pr27382-1.c: New testcase.
* gcc.dg/pr27382-2.c: New testcase.

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

17 years ago PR c/25161
jsm28 [Mon, 5 Jun 2006 00:51:45 +0000 (00:51 +0000)]
PR c/25161
PR c/27020
* c-decl.c (grokdeclarator): Disallow variably modified types at
file scope.  Avoid marking shared array type of constant size as
VLA.

testsuite:
* gcc.dg/array-10.c: New test.

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

17 years ago PR c++/27804
reichelt [Mon, 5 Jun 2006 00:24:41 +0000 (00:24 +0000)]
PR c++/27804
* init.c (constant_value_1): Return decl instead of error_mark_node
for invalid initializers.

PR c++/27804
* g++.dg/init/const4.C: New test.
* g++.dg/init/member1.C: Add error-marker.
* g++.dg/other/fold1.C: Adjust error-marker.

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

17 years agoDaily bump.
gccadmin [Mon, 5 Jun 2006 00:17:24 +0000 (00:17 +0000)]
Daily bump.

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

17 years ago PR c++/27601
reichelt [Sun, 4 Jun 2006 23:42:04 +0000 (23:42 +0000)]
PR c++/27601
* c-common.c (fold_offsetof_1): Handle static members.

* g++.dg/ext/offsetof1.C: New test.

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

17 years ago2006-06-04 Eric Christopher <echristo@apple.com>
echristo [Sun, 4 Jun 2006 19:50:48 +0000 (19:50 +0000)]
2006-06-04 Eric Christopher <echristo@apple.com>

        * stor-layout.c (start_record_layout): Initialize remaining_in_alignment.
        (debug_rli): Output value for remaining_in_alignment.
        (update_alignment_for_field): Unconditionalize
        ms_bitfield_layout_p code. Handle non-bitfield fields. Remove
        extra alignment code.
        (place_field): Don't realign if ms_bitfield_layout_p. Unconditionalize
        ms_bitfield_layout_p code. Rewrite handling of structure fields.
        * tree.h (record_layout_info_s): Remove prev_packed.
        * doc/extend.texi (ms_struct): Add documentation of format.

2006-06-04 Eric Christopher <echristo@apple.com>

        * gcc.dg/attr-ms_struct-1.c: New.

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

17 years ago2006-06-01 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Sun, 4 Jun 2006 18:25:40 +0000 (18:25 +0000)]
2006-06-01  Andrew Pinski  <pinskia@physics.uc.edu>

        PR c++/27592
        * rtti.c (build_dynamic_cast_1): Call c_common_truthvalue_conversion
        on operand of the COND_EXPR for the null pointer check.

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

17 years ago2006-06-01 Andrew Pinski <pinskia@physics.uc.edu>
pinskia [Sun, 4 Jun 2006 17:40:51 +0000 (17:40 +0000)]
2006-06-01  Andrew Pinski  <pinskia@physics.uc.edu>

        PR c++/26740
        * typeck.c (build_unary_op): Mark the function as being used.

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

17 years ago * gcc.c-torture/compile/builtin_constant_p.c: New test.
shinwell [Sun, 4 Jun 2006 16:30:28 +0000 (16:30 +0000)]
* gcc.c-torture/compile/builtin_constant_p.c: New test.
(neglected in previous commit)

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

17 years agogcc:
shinwell [Sun, 4 Jun 2006 16:28:55 +0000 (16:28 +0000)]
gcc:

* tree.h: Declare folding_initializer.
* builtins.c (fold_builtin_constant_p): Give definite answer
if folding inside an initializer.
* fold-const.c: Define folding_initializer.
(START_FOLD_INIT): Save and then set folding_initializer.
(END_FOLD_INIT): Restore folding_initializer.

gcc/testsuite:

        * gcc.c-torture/compile/builtin_constant_p.c: New test.

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

17 years ago2006-06-04 Richard Guenther <rguenther@suse.de>
rguenth [Sun, 4 Jun 2006 12:59:40 +0000 (12:59 +0000)]
2006-06-04  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/27039
* fold-const.c (fold_comparison): Handle pointer comparison
again for all comparison codes.  Compare offsets in signed
size type.
(fold_binary): Move code from here.

* gcc.dg/tree-ssa/loop-17.c: New testcase.

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

17 years ago2006-06-04 Paolo Carlini <pcarlini@suse.de>
paolo [Sun, 4 Jun 2006 09:32:56 +0000 (09:32 +0000)]
2006-06-04  Paolo Carlini  <pcarlini@suse.de>

PR libstdc++/27867
* include/bits/valarray_before.h (struct _BinClos<_Oper, _ValArray,
_ValArray, _Tp, _Tp>): Fix value_type typedef.
* testsuite/26_numerics/valarray/27867.cc: New.

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

17 years ago PR target/26223
sayle [Sun, 4 Jun 2006 04:28:25 +0000 (04:28 +0000)]
PR target/26223
* config/i386/i386.c (construct_container): Split static issued_error
flag into issued_sse_arg_error, issued_sse_ret_error and
issued_x87_ret_error.  Issue a daignostic if the x86-64 ABI
requires the use of x87 registers and the user explicitly
specified the -mno-80387 command line option.

* gcc.target/i386/amd64-abi-2.c: New test case.

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

17 years agoDaily bump.
gccadmin [Sun, 4 Jun 2006 00:18:57 +0000 (00:18 +0000)]
Daily bump.

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

17 years ago * trans.c (gfc_msg_bounds, gfc_msg_fault, gfc_msg_wrong_return):
fxcoudert [Sat, 3 Jun 2006 17:28:33 +0000 (17:28 +0000)]
* trans.c (gfc_msg_bounds, gfc_msg_fault, gfc_msg_wrong_return):
Add strings for common runtime error messages.
(gfc_trans_runtime_check): Add a locus argument, use a string
and not a string tree for the message.
* trans.h (gfc_trans_runtime_check): Change prototype accordingly.
(gfc_msg_bounds, gfc_msg_fault, gfc_msg_wrong_return): Add proto.
* trans-const.c (gfc_strconst_bounds, gfc_strconst_fault,
gfc_strconst_wrong_return, gfc_strconst_current_filename): Remove.
(gfc_init_constants): Likewise.
* trans-const.h: Likewise.
* trans-decl.c (gfc_build_builtin_function_decls): Call to
_gfortran_runtime_error has only one argument, the message string.
* trans-array.h (gfc_conv_array_ref): Add a symbol argument and a
locus.
* trans-array.c (gfc_trans_array_bound_check): Build precise
error messages.
(gfc_conv_array_ref): Use the new symbol argument and the locus
to build more precise error messages.
(gfc_conv_ss_startstride): More precise error messages.
* trans-expr.c (gfc_conv_variable): Give symbol reference and
locus to gfc_conv_array_ref.
(gfc_conv_function_call): Use the new prototype for
gfc_trans_runtime_check.
* trans-stmt.c (gfc_trans_goto): Build more precise error message.
* trans-io.c (set_string): Likewise.
* trans-intrinsic.c (gfc_conv_intrinsic_bound): Use new prototype
for gfc_trans_runtime_check.

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

17 years ago2006-06-03 Carlos O'Donell <carlos@codesourcery.com>
carlos [Sat, 3 Jun 2006 17:16:11 +0000 (17:16 +0000)]
2006-06-03  Carlos O'Donell  <carlos@codesourcery.com>

* Makefile.in: Add html and install-html targets.

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

17 years ago2006-06-03 Laurynas Biveinis <laurynas.biveinis@gmail.com>
lauras [Sat, 3 Jun 2006 16:46:04 +0000 (16:46 +0000)]
2006-06-03  Laurynas Biveinis  <laurynas.biveinis@gmail.com>

* MAINTAINERS (Write After Approval): Update my e-mail address.

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

17 years ago2006-06-03 Paolo Bonzini <bonzini@gnu.org>
bonzini [Sat, 3 Jun 2006 10:15:42 +0000 (10:15 +0000)]
2006-06-03  Paolo Bonzini  <bonzini@gnu.org>

* scripts/jar.in: Ensure return with argument has non-empty argument.

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

17 years agoUpdate copyright notice on host-darwin.c.
geoffk [Sat, 3 Jun 2006 02:14:39 +0000 (02:14 +0000)]
Update copyright notice on host-darwin.c.

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

17 years agoIndex: gcc/ChangeLog
geoffk [Sat, 3 Jun 2006 02:07:36 +0000 (02:07 +0000)]
Index: gcc/ChangeLog
2006-06-02  Geoffrey Keating  <geoffk@apple.com>

* config/rs6000/host-darwin.c (sigaltstack): Protect prototype with
HAVE_DECL_SIGALTSTACK.
(MC_FLD): New.
(segv_handler): Use MC_FLD.
* configure.ac: Check for a sigaltstack declaration.
Compute HAS_MCONTEXT_T_UNDERSCORES on Darwin.
* configure: Regenerate.
* config.in: Regenerate.

Index: boehm-gc/ChangeLog
2006-06-02  Geoffrey Keating  <geoffk@apple.com>

* configure.ac: Define HAS_PPC_THREAD_STATE_R0,
HAS_PPC_THREAD_STATE___R0, HAS_PPC_THREAD_STATE64_R0,
HAS_PPC_THREAD_STATE64___R0, HAS_I386_THREAD_STATE_EAX,
HAS_I386_THREAD_STATE___EAX.
* configure: Regenerate.
* include/gc_config.h.in: Regenerate.
* darwin_stop_world.c (PPC_RED_ZONE_SIZE): Use standard Darwin
macro names to determine value.
(THREAD_STATE): New.
(THREAD_FLD): New.
(GC_push_all_stacks): Use THREAD_STATE and THREAD_FLD in both versions.

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

17 years ago2006-06-02 Eric Christopher <echristo@apple.com>
echristo [Sat, 3 Jun 2006 00:52:54 +0000 (00:52 +0000)]
2006-06-02  Eric Christopher  <echristo@apple.com>

        * gcc.c-torture/compile/20000804-1.c: Skip if i?86-darwin.
        * gcc.target/i386/20020523-1.c: Skip if darwin.
        * gcc.target/i386/asm-3.c: Ditto.
        * gcc.target/i386/20011119-1.c: Ditto.
        * gcc.target/i386/clobbers.c: Remove pic part of test.

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

17 years agoDaily bump.
gccadmin [Sat, 3 Jun 2006 00:17:18 +0000 (00:17 +0000)]
Daily bump.

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

17 years ago PR other/27850
amylaar [Fri, 2 Jun 2006 23:50:11 +0000 (23:50 +0000)]
PR other/27850
* Makefile.in (stmp-fixinc): Fix typo.

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

17 years ago * compare_tests: Handle multilibs better.
mrs [Fri, 2 Jun 2006 23:47:35 +0000 (23:47 +0000)]
* compare_tests: Handle multilibs better.

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

17 years ago * fold-const.c (fold_unary) <CONJ_EXPR>: Ensure folded expressions
sayle [Fri, 2 Jun 2006 23:41:12 +0000 (23:41 +0000)]
* fold-const.c (fold_unary) <CONJ_EXPR>: Ensure folded expressions
are type correct.  Clean-up.
<REALPART_EXPR>: Likewise.  Optimize creal(~z) as creal(z).
<IMAGPART_EXPR>: Likewise.  Optimize cimag(~z) as -cimag(z).

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

17 years ago * g++.old-deja/g++.other/init5.C: XFAIL if cxa-atexit is false.
sje [Fri, 2 Jun 2006 17:39:28 +0000 (17:39 +0000)]
* g++.old-deja/g++.other/init5.C: XFAIL if cxa-atexit is false.
* g++.old-deja/g++.other/init19.C: Ditto.
* g++.old-deja/g++.other/init18.C: Ditto, plus change _Exit to _exit
and add other platforms as expected failures.

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

17 years ago * pex-unix.c (pex_unix_exec_child): Insert cast when assigning
shinwell [Fri, 2 Jun 2006 14:36:45 +0000 (14:36 +0000)]
* pex-unix.c (pex_unix_exec_child): Insert cast when assigning
to environ.

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

17 years agoDaily bump.
gccadmin [Fri, 2 Jun 2006 00:17:24 +0000 (00:17 +0000)]
Daily bump.

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

17 years ago * lib/target-supports.exp (is-effective-target): Add cxa_atexit.
sje [Thu, 1 Jun 2006 23:21:14 +0000 (23:21 +0000)]
* lib/target-supports.exp (is-effective-target): Add cxa_atexit.
(is-effective-target-keyword): Ditto.

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

17 years ago2006-06-01 Thomas Koenig <Thomas.Koenig@online.de>
tkoenig [Thu, 1 Jun 2006 19:23:56 +0000 (19:23 +0000)]
2006-06-01  Thomas Koenig  <Thomas.Koenig@online.de>

PR fortran/27715
* arith.c:  Cast the characters from the strings to unsigned
char to avoid values less than 0 for extended ASCII.

2006-06-01  Thomas Koenig  <Thomas.Koenig@online.de>

PR fortran/27715
* gfortran.dg/extended_char_comparison_1.f:  New test.

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

17 years ago* config/v850/v850.h (ASM_OUTPUT_ADDR_DIFF_ELT): Disabled the
dj [Thu, 1 Jun 2006 17:54:20 +0000 (17:54 +0000)]
* config/v850/v850.h (ASM_OUTPUT_ADDR_DIFF_ELT): Disabled the
shift, as we've disabled the "switch" insn that needs it.

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

17 years agoFix typo in old ChangeLog entry.
bothner [Thu, 1 Jun 2006 16:37:27 +0000 (16:37 +0000)]
Fix typo in old ChangeLog entry.

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

17 years ago Suppress extra '#1 <built-in> or '#1 <command line>' on -dD output.
bothner [Thu, 1 Jun 2006 16:36:25 +0000 (16:36 +0000)]
Suppress extra '#1 <built-in> or '#1 <command line>' on -dD output.
* c-opts.c (finish_options): Use internal line 0 for <command-line>.
* c-ppoutput.c (cb_define): Don't increment line 0.

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