summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2003-10-21 Sascha Brawer <brawer@dandelis.ch>mkoch2003-10-212-3/+24
| | | | | | | | | Fix for bug #2944, reported by David Holmes <dholmes@dltech.com.au> * java/util/logging/ErrorManager.java (everUsed): Made volatile. (error): Synchronize on instance, not class. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72750 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-21 Mark Wielaard <mark@klomp.org>mkoch2003-10-212-32/+53
| | | | | | | | | | Reported by M.Negovanovic * java/beans/Introspector.java (getBeanInfo(ClassLoader, String)): New method. (reallyFindExplicitBeanInfo): Use new getBeanInfo() method. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72749 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-21 Sascha Brawer <brawer@dandelis.ch>mkoch2003-10-212-93/+221
| | | | | | | | | | | | | | | | | | | Fix for Classpath bug #6076. * java/awt/geom/GeneralPath.java (append): Re-written. 2003-10-21 Sascha Brawer <brawer@dandelis.ch> Fix for Classpath bug #6089. * java/awt/geom/GeneralPath.java (curveTo): Set correct segment type. (getPathIterator, GeneralPathIterator): Re-written from scratch. 2003-10-21 Sascha Brawer <brawer@dandelis.ch> * java/awt/geom/GeneralPath.java (getCurrentPoint): Return last point, not start of subpath. Fixes Classpath bug #6075. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72748 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-21 Michael Koch <konqueror@gmx.de>mkoch2003-10-214-0/+38
| | | | | | | | | | * java/nio/ByteOrder.java, java/nio/DirectByteBufferImpl.java, java/nio/channels/FileChannelImpl.java: Add code to load library with code for native methods if needed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72747 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-21 Michael Koch <konqueror@gmx.de>mkoch2003-10-217-169/+179
| | | | | | | | | | | | | * gnu/java/net/PlainDatagramSocketImpl.java, gnu/java/net/PlainSocketImpl.java, gnu/java/net/natPlainDatagramSocketImplPosix.cc, gnu/java/net/natPlainDatagramSocketImplWin32.cc, gnu/java/net/natPlainSocketImplPosix.cc, gnu/java/net/natPlainSocketImplWin32.cc: Renamed fnum to native_fd to match classpath more. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72746 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-21 Paolo Carlini <pcarlini@suse.de>paolo2003-10-213-3/+7
| | | | | | | | * src/locale.cc: Tweak a comment. * src/localename.cc: Move a comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72745 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-09-28 Robert Millan <robertmh@gnu.org>davem2003-10-215-0/+116
| | | | | | | | | | * config/i386/kfreebsdgnu.h: New. i386-*-kfreebsd-gnu definitions. * config/kfreebsdgnu.h: New. *-*-kfreebsd-gnu definitions. * config/t-kfreebsd-gnu: New. *-*-kfreebsd-gnu tmake_file. * config.gcc: Add *-*-kfreebsd*-gnu and i[34567]86-*-kfreebsd*-gnu. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72744 138bc75d-0d04-0410-961f-82ee72b054a4
* * web.c: Fix various comments.ebotcazou2003-10-212-37/+39
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72743 138bc75d-0d04-0410-961f-82ee72b054a4
* * Make-lang.in (gnat_ug_unx.info): Add dependency on stmp-docobjdir.mmitchel2003-10-216-8/+31
| | | | | | | | | | | | | | | | | (gnat_ug_vmx.info): Likewise. (gnat_ug_vxw.info): Likewise. (gnat_ug_wnt.info): Likewise. (gnat_rm.info): Likewise. (gnat-style.info): Likewise. * Make-lang.in ($(docobjdir)/g77.info): Add dependency on stmp-docobjdir. * Make-lang.in ($(docobjdir)/treelang/treelang.info): Depend on stmp-docobjdir. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72742 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-21 Jerry Quinn <jlquinn@optonline.net>jlquinn2003-10-219-8/+96
| | | | | | | | | | | | | | | | | | * posix-threads.cc (_Jv_CondNotify,_Jv_CondNotifyAll): Rename _Jv_PthreadCheckMonitor to _Jv_MutexCheckMonitor. * include/no-threads.h (_Jv_MutexCheckMonitor): New. * include/posix-threads.h (_Jv_MutexCheckMonitor): Rename from _Jv_PthreadCheckMonitor. Simplify code. (_Jv_MutexUnlock): Use _Jv_MutexCheckMonitor. * include/win32-threads.h (_Jv_MutexCheckMonitor): New. * java/lang/Object.h (_Jv_ObjectCheckMonitor): Declare. * java/lang/Thread.java (holdsLock): New. * java/lang/natObject.cc (_Jv_ObjectCheckMonitor): New, with and without JV_HASH_SYNCHRONIZATION. * java/lang/natThread.cc (java::lang::Thread::holdsLock): New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72741 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-20 Kelley Cook <kcook@gcc.gnu.org>kcook2003-10-212-53/+81
| | | | | | | | | | | | | | | | | | | | | | * Make-lang.in (info): Honor $(parsedir) and $(docobjdir). (generate-manpages): Likewise. (java.maintainer-clean): Likewise. (gcj.info): Likewise. (gcj.1): Likewise. (gcjh.1): Likewise. (jv-scan.1): Likewise. (jcf-dump.1): Likewise. (gij.1): Likewise. (jv-convert.1): Likewise. (rmic.1): Likewise. (rmiregistry.1): Likewise. (java.install-man): Likewise. (parse-scan.o): Move and define complete compile line. (parse.o): Likewise. (jcf-tree-inline.o): Move. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72739 138bc75d-0d04-0410-961f-82ee72b054a4
* * ChangeLog: Fix typos.kazu2003-10-2116-36/+55
| | | | | | | | | | | | | | | | | | | | | * call.c: Fix comment typos. * class.c: Likewise. * cp-tree.h: Likewise. * cvt.c: Likewise. * cxx-pretty-print.c: Likewise. * decl.c: Likewise. * decl2.c: Likewise. * init.c: Likewise. * mangle.c: Likewise. * name-lookup.c: Likewise. * parser.c: Likewise. * search.c: Likewise. * semantics.c: Likewise. * tree.c: Likewise. * typeck.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72737 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/arm/arm.c (arm_override_options): Set arm_constant_limitnico2003-10-212-16/+36
| | | | | | | | to 2 instead of 1 when optimize_size is true. Gather code based on optimize_size together. Add comment about XScale load latency. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72736 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/m68k/m68k.c (m68k_output_function_prologue): Removebernie2003-10-212-4/+5
| | | | | | | obsolete comments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72735 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2003-10-212-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72733 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-20 Kelley Cook <kcook@gcc.gnu.org>kcook2003-10-205-302/+363
| | | | | | | | | | | * Makefile.in: Get parsedir and docobjdir from configure. * configure.in: Recogonize --enable-generated-files-in-srcdir. Pass along parsedir and docobjdir. * configure: Regenerate. * doc/install.texi: Document --enable-generated-files-in-srcdir. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72731 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.in: Define $(docdir) before the Make-lang.in fragments arekcook2003-10-202-2/+6
| | | | | | | included. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72730 138bc75d-0d04-0410-961f-82ee72b054a4
* * cplus-dem.c (demangle_template): Register a new Btype onlybrobecke2003-10-203-4/+16
| | | | | | | | when needed. * testsuite/demangle-expected: Add a new test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72729 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-20 Benjamin Kosnik <bkoz@redhat.com>bkoz2003-10-2017-939/+974
| | | | | | | | | | | | | | | | | | | | | | PR libstdc++/10081 * testsuite_hooks.h: Add pod_type, ctype and numpunct specializations. * testsuite_hooks.cc: Same. * 22_locale/numpunct/members/pod/1.cc: Edit. * 22_locale/numpunct/members/pod/2.cc: Same. * 27_io/basic_istream/sentry/char/3983-fstream.cc: Move ... * 27_io/basic_istream/sentry/char/3983-sstream.cc: Move ... * 27_io/basic_istream/extractors_arithmetic/pod/3983-1.cc: Here. * 27_io/basic_istream/extractors_character/pod/3983-2.cc: Here. * 27_io/basic_istream/extractors_other/pod/3983-3.cc: Here. * 27_io/basic_ostream/sentry/char/3983-fstream.cc: Remove. * 27_io/basic_ostream/sentry/char/3983-sstream.cc: Remove. * 27_io/basic_istream/sentry/pod/1.cc: New. * 27_io/basic_ostream/sentry/pod/1.cc: New. * 21_strings/basic_string/inserters_extractors/pod/10081-in.cc: New. * 21_strings/basic_string/inserters_extractors/pod/10081-out.cc: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72728 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-common.c (expand_tree_builtin): Ensure creal and cimagjsm282003-10-204-2/+40
| | | | | | | | | | functions do not return lvalues. testsuite: * gcc.dg/builtins-28.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72727 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c/12553jason2003-10-201-0/+9
| | | | | | | | * tree.c (build1) <ADDR_EXPR>: Set TREE_SIDE_EFFECTS appropriately. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72726 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c/11446jason2003-10-201-0/+19
| | | | | | | * stor-layout.c (layout_decl): Fix alignment handling. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72725 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c/12553jason2003-10-203-13/+51
| | | | | | | | | | | * tree.c (build1) <ADDR_EXPR>: Set TREE_SIDE_EFFECTS appropriately. PR c/11446 * stor-layout.c (layout_decl): Fix alignment handling. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72724 138bc75d-0d04-0410-961f-82ee72b054a4
* * doc/extend.texi: Deprecate casts as lvalues.jsm282003-10-202-1/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72723 138bc75d-0d04-0410-961f-82ee72b054a4
* * objc/hash.h (hash_string): Don't use a cast as an lvalue.jsm282003-10-202-3/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72722 138bc75d-0d04-0410-961f-82ee72b054a4
* * toplev.c (rest_of_compilation): Fix webizer pass ordering.hubicka2003-10-2015-155/+103
| | | | | | | | | | | | | | | | | | | | | | | * cgraphunit.c (decide_is_function_needed): Fix test dealing with functions implicitly made inline. * cgraphunit.c (cgraph_decide_inlining_incrementally): New function. (cgraph_finalize_function): Use it. (cgraph_mark_inline): Allow incrmental decisions * invoke.texi (max-inline-slope, min-inline-insns): Kill. * params.def (PARAM_MAX_INLINE_SLOPE, PARAM_MIN_INLINE_INSNS): Kill. * tree-inline.c (limits_allow_inlining): Kill. (expand_call_inline): Always use unit-at-a-time path. * decl.c (start_cleanup_fn): Set DECL_DECLARED_INLINE_P to deffer the expansion. * testsuite/g++.dg/opt/inline4.C: Do not use min-inline-insns parameter. * testsuite/gcc.dg/inline-2.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72721 138bc75d-0d04-0410-961f-82ee72b054a4
* * fixinc/inclhack.def (hpux11_snprintf): New edit.zack2003-10-204-5/+78
| | | | | | | | * fixinc/fixincl.x: Regenerate. * fixinc/tests/base/stdio.h: Add test for hpux11_snprintf. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72719 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.in (install-info): Simplify.mmitchel2003-10-2016-138/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ($(DESTDIR)$(infodir)/%.info): New rule. * configure.in (target_list): Remove install-info. * doc/.cvsignore (gcc.info*): Remove. (gccint.info*): Likewise. (gccinstall.info*): Likewise. (cpp.info*): Likewise. (cppinternals.info*): Likewise. (*.info*): Add it. * doc/sourcebuild.texi: Update description of install-info. * objc/Make-lang.in (objc.install-info): Remove. 2003-10-20 Mark Mitchell <mark@codesourcery.com> * Make-lang.in (ada.install-info): Remove target. (info): New target. (install-info): Likewise. (gnat_ug_unx.info): Simplify rule. (gnat_ug_vmx.info): Likewise. (gnat_ug_vxw.info): Likewise. (gnat_ug_wnt.info): Likewise. (gnat_rm.info): Likewise. (gnat-style.info): Likewise. 2003-10-20 Mark Mitchell <mark@codesourcery.com> * Make-lang.in (c++.install-info): Remove. Mon Oct 20 13:49:43 2003 Mark Mitchell <mark@codesourcery.com> * Make-lang.in (.PHONY): Remove f77.info, f77.install-info. (info): Update dependencies. ($(srcdir)/f/g77.info): Replace with ... ($(docobjdir)/g77.info): ... this. (f77.install-info): Remove. (install-info): New target. 2003-10-20 Mark Mitchell <mark@codesourcery.com> * Make-lang.in (info): Update dependencies. (java.install-info): Remove. ($(srcdir)/java/gcj.info): Replace with ... ($(docobjdir)/gcj.info): ... this. 2003-10-20 Mark Mitchell <mark@codesourcery.com> * Make-lang.in (info): Use docobjdir. ($(srcdir)/treelang/treelang.info): Replace with ... ($(docobjdir)/treelang/treelang.info): ... this. (install-info): New target. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72718 138bc75d-0d04-0410-961f-82ee72b054a4
* * class.c (layout_class_type): Set DECL_ARTIFICIAL on paddingjason2003-10-202-2/+8
| | | | | | | field. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72717 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-20 Michael Koch <konqueror@gmx.de>mkoch2003-10-202-11/+39
| | | | | | | | | | | | * java/text/RuleBasedCollator.java (RuleBasedCollator): Check rules not empty, fixed search in already existing collation elements. (is_special): Removed common whitespace characters. (text_argument): Dont return on whitespaces, add characters between two ' to string buffer. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72716 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-20 Phil Edwards <phil@codesourcery.com>pme2003-10-203-2/+7
| | | | | | | | * gcc.dg/20021014-1.c: XFAIL for *-*-windiss targets. * gcc.dg/nest.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72715 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-20 Phil Edwards <phil@codesourcery.com>pme2003-10-203-2/+7
| | | | | | | | * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs. * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72714 138bc75d-0d04-0410-961f-82ee72b054a4
* libffi:ro2003-10-209-15/+37
| | | | | | | | | | | | | | | | | | | | | * src/mips/ffi.c: Use _ABIN32, _ABIO32 instead of external _MIPS_SIM_NABI32, _MIPS_SIM_ABI32. libstdc++-v3: * config/cpu/mips/atomicity.h (__atomic_add): Use _ABIO32 instead of external _MIPS_SIM_ABI32. boehm-gc: * mips_sgi_mach_dep.s: Use _ABIO32 instead of external _MIPS_SIM_ABI32. gcc: * config/mips/linux.h (TARGET_OS_CPP_BUILTINS): Define _ABIO32. Use it in _MIPS_SIM definition. * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72713 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/i386/i386.c (print_reg): Abort if REGNO (x) is azack2003-10-203-2/+16
| | | | | | | | | virtual register, but only if file == asm_out_file. * config/i386/i386.h (HI_REGISTER_NAMES): Use "argp", not "", for ARG_POINTER_REGNUM. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72712 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-common.c (registered_builtin_types): New static.zack2003-10-203-29/+39
| | | | | | | | | | | (c_common_type_for_mode): Consult registered_builtin_types. (c_register_builtin_type): Add type to registered_builtin_types. * optabs.c (init_floating_libfuncs): Initialize libfuncs for all MODE_FLOAT modes, not just the ones corresponding to float_type_node, double_type_node, and long_double_type_node. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72711 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-20 Phil Edwards <phil@codesourcery.com>pme2003-10-2010-35/+499
| | | | | | | | | | | | | | | | | * configure.ac: Fix comment typo. * configure.host: Add vxworks to host_os switch. * crossconfig.m4: Remove old commented os_include_dir variables left over from autotools transition. (*-vxworks): New stanza. (*-windiss): Add missing symbols. * configure: Regenerate. * config/os/vxworks/ctype_base.h, config/os/vxworks/ctype_inline.h, config/os/vxworks/ctype_noninline.h, config/os/vxworks/os_defines.h: New files. * config/os/windiss/os_defines.h: Define __C9X__. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72710 138bc75d-0d04-0410-961f-82ee72b054a4
* * config.gcc: Add support for arm926ejs, arm1026ejs, arm1136js,mmitchel2003-10-201-3/+6
| | | | | | | | | | | | | | | | | | | | arm1136jfs, and armv6j. * config/arm/arm.c (FL_ARCH6J): New macro. (FL_VFPV2): Likewise. (all_cores): Add entries for arm926ejs, arm1026ejs, arm1136js, and arm1136jfs. (all_architectures): Add entry for armv6j. (arm_override_options): Add entries for arm926ejs, arm1026ejs, arm1136js, and arm1136jfs. * config/arm/arm.h (TARGET_CPU_arm926ej_s): New macro. (TARGET_CPU_arm1026ej_s): Likewise. (TARGET_CPU_arm1136j_s): Likewise. (TARGET_CPU_arm1136jf_s): Likewise. * doc/invoke.texi: Document new ARM cores and architecture variants. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72709 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/alpha/alpha.h (PREDICATE_CODES): Add normal_memory_operand.rth2003-10-203-50/+6
| | | | | | | * config/alpha/alpha-protos.h: Remove PREDICATE_CODES prototypes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72708 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/rs6000/rs6000.h: (rs6000_sched_insert_nops):dorit2003-10-204-22/+596
| | | | | | | | | | | | | | | | | | | | support new flag -minsert-sched-nops. (DEFAULT_SCHED_FINISH_NOP_INSERTION_SCHEME): Define. * config/rs6000/rs6000.c: (rs6000_sched_insert_nops): support new flag -minsert-sched-nops. (is_cracked_insn, is_microcoded_insn): New functions. (rs6000_sched_finish): New function. (rs6000_issue_rate): Return 5 for power4. (get_next_active_insn, insn_terminates_group_p): New functions. (is_costly_group, force_new_group): New functions. (redefine_groups, pad_groups): New functions. (rs6000_variable_issue): Use new functions. * doc/invoke.texi (-minsert-sched-nops): Document new option. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72707 138bc75d-0d04-0410-961f-82ee72b054a4
* * MAINTAINERS: Add myself to 'Write After Approval' section.nico2003-10-202-0/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72706 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c++/9781, c++/10583, c++/11862lerdsuwa2003-10-205-2/+42
| | | | | | | | | | | | * decl.c (cp_finish_decl): Exit immediately if decl is an error_mark_node. * pt.c (push_template_decl_real): Return error_mark_node for invalid template declaration of variable. * g++.dg/parse/crash13.C: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72701 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.dg/old-style-asm-1.c: Count jump_insns instead of labels.rakdver2003-10-202-7/+8
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72698 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/sparc/sparc.md (type attribute): Add new insn typesdavem2003-10-204-28/+108
| | | | | | | | | | fpa, fpm_pack, fgm_mul, fgm_pdist, and fgm_cmp for VIS. (patterns emitting VIS insns): Use them. * config/sparc/ultra1_2.md: Add VIS scheduling rules. * config/sparc/ultra3.md: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72697 138bc75d-0d04-0410-961f-82ee72b054a4
* PR target/12654falk2003-10-203-4/+34
| | | | | | | | | * config/alpha/alpha.c (alpha_emit_conditional_branch): Don't do comparison against constant by adjusting the argument except for EQ and NE. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72696 138bc75d-0d04-0410-961f-82ee72b054a4
* * MAINTAINERS (Various maintainers: Ada front end): Added myself.charlet2003-10-202-0/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72695 138bc75d-0d04-0410-961f-82ee72b054a4
* * config.gcc: Add support for arm926ejs, arm1026ejs, arm1136js,mmitchel2003-10-204-4/+40
| | | | | | | | | | | | | | | | | | | | arm1136jfs, and armv6j. * config/arm/arm.c (FL_ARCH6J): New macro. (FL_VFPV2): Likewise. (all_cores): Add entries for arm926ejs, arm1026ejs, arm1136js, and arm1136jfs. (all_architectures): Add entry for armv6j. (arm_override_options): Add entries for arm926ejs, arm1026ejs, arm1136js, and arm1136jfs. * config/arm/arm.h (TARGET_CPU_arm926ej_s): New macro. (TARGET_CPU_arm1026ej_s): Likewise. (TARGET_CPU_arm1136j_s): Likewise. (TARGET_CPU_arm1136jf_s): Likewise. * doc/invoke.texi: Document new ARM cores and architecture variants. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72694 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.dg/builtins-18.c: Wrap C99 tests with HAVE_C99_RUNTIME.ebotcazou2003-10-203-0/+24
| | | | | | | | Define HAVE_C99_RUNTIME except on Solaris. * gcc.dg/builtins-20.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72693 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-10-19 Andreas Tobler <a.tobler@schweiz.ch>andreast2003-10-202-0/+6
| | | | | | | | * src/powerpc/ffi_darwin.c (ffi_prep_args): Declare bytes again. Used when FFI_DEBUG = 1. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72691 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2003-10-202-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72689 138bc75d-0d04-0410-961f-82ee72b054a4
* * MAINTAINERS: Update my email address.jsm282003-10-192-2/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72687 138bc75d-0d04-0410-961f-82ee72b054a4