- 01 Jun, 1999 2 commits
-
-
* rs6000/aix41.h (RS6000_CALL_GLUE): Define. * rs6000/aix43.h (RS6000_CALL_GLUE): Likewise. * rs6000/rs6000.c (rs6000_file_start): Use putc. (rs6000_output_load_toc_table): Same. (output_prolog, output_mi_thunk): Same. * rs6000/rs6000.h (SELECT_SECTION): Formatting. (ASM_GLOBALIZE_LABEL): Use putc. From-SVN: r27287
David Edelsohn committed -
From-SVN: r27286
Jeff Law committed
-
- 31 May, 1999 11 commits
-
-
* alpha.md (reload_*_help): New patterns and splitters. (reload_*): Use them. (mov[qh]i): Likewise. From-SVN: r27283
Richard Henderson committed -
* jump.c (jump_optimize_1): Only set CAN_REACH_END if calculate_can_reach_end returns nonzero. From-SVN: r27281
Jeffrey A Law committed -
* cccp.c (handle_directive): Handle backslash-newlines in quoted strings correctly. From-SVN: r27279
Mark Mitchell committed -
From-SVN: r27278
Cort Dougan committed -
flow.c (mark_regs_live_at_end, [...]): Only give FRAME_POINTER_REGNUM and HARD_FRAME_POINTER_REGNUM special treatment... * flow.c (mark_regs_live_at_end, insn_dead_p, mark_set_1, mark_used_regs): Only give FRAME_POINTER_REGNUM and HARD_FRAME_POINTER_REGNUM special treatment if reload hasn't run or the frame pointer is needed. * haifa-sched.c (attach_deaths): Likewise. * sched.c (attach_deaths): Likewise. From-SVN: r27276
John Wehle committed -
From-SVN: r27274
Kaveh R. Ghazi committed -
* tm.texi (MD_EXEC_PREFIX): Note need to update configure.in too. Forgot to commit. From-SVN: r27273
Jeffrey A Law committed -
configure.in (native gas tests): Search for an assembler in the same manner that the installed compiler will. * configure.in (native gas tests): Search for an assembler in the same manner that the installed compiler will. * configure: Rebuilt. From-SVN: r27269
Jeffrey A Law committed -
From-SVN: r27267
Jeff Law committed -
tree.c (build_cplus_array_type_1): Use push_obstacks_nochange and friends rather than messing with current_obstack... * tree.c (build_cplus_array_type_1): Use push_obstacks_nochange and friends rather than messing with current_obstack directly. (cp_build_qualified_type_real): Rework ARRAY_TYPE allocation to match practice throughout the rest of the compiler. From-SVN: r27265
Mark Mitchell committed -
tree.c (cp_build_qualified_type_real): Rework ARRAY_TYPE allocation to match practice throughout the rest of the compiler. * tree.c (cp_build_qualified_type_real): Rework ARRAY_TYPE allocation to match practice throughout the rest of the compiler. From-SVN: r27264
Mark Mitchell committed
-
- 30 May, 1999 13 commits
-
-
* alias.c (find_base_term): Improve handling of addresses constructed from binary operations. From-SVN: r27263
Jeffrey A Law committed -
From-SVN: r27261
Jeffrey A Law committed -
From-SVN: r27260
Mark Mitchell committed -
* lex.c (make_lang_type): Create TYPE_BINFO for TEMPLATE_TYPE_PARMs just like for non-template types. From-SVN: r27259
Mark Mitchell committed -
* lex.c (make_lang_type): Create TYPE_BINFO for TEMPLATE_TYPE_PARMs just like for non-template types. [[Split portion of a mixed commit.]] From-SVN: r27258.2
Mark Mitchell committed -
[[Split portion of a mixed commit.]] From-SVN: r27257.2
Craig Burley committed -
From-SVN: r27256
Richard Henderson committed -
Cort Dougan <cort@cs.nmt.edu> * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux. From-SVN: r27254
Cort Dougan committed -
* decl.c (start_decl): Move checks on initialization to ... (cp_finish_decl): Here. Tidy formatting slightly. From-SVN: r27252
Mark Mitchell committed -
Sun May 30 14:29:17 1999 Eric Raskin (ehr@listworks.com) * dgux.h (STARTFILE_SPEC): Fix incorrectly matched curly-braces. Sun May 30 14:19:13 1999 Jeffrey A Law (law@cygnus.com) * function.h (cleanup_label, frame_offset): Declare. (tail_recursion_label, tail_recursion_reentry): Likewise. (arg_pointer_save_area, rtl_expr_chain): Likewise. * stmt.c (cleanup_label, frame_offset): Delete extern declarations. (tail_recursion_label, tail_recursion_reentry): Likewise. (arg_pointer_save_area, rtl_expr_chain): Likewise. From-SVN: r27249
Jeff Law committed -
From-SVN: r27248
Eric Raskin committed -
Sat May 29 19:08:10 1999 Philip Blundell <philb@gnu.org> * config/arm/aout.h (ASM_OUTPUT_ALIGN): Only define if not already defined. * config/arm/elf.h (ASM_OUTPUT_ALIGN): Define. (MAX_OFILE_ALIGNMENT): Likewise. From-SVN: r27246
Philip Blundell committed -
From-SVN: r27244
Jeff Law committed
-
- 29 May, 1999 4 commits
-
-
[[Split portion of a mixed commit.]] From-SVN: r27238.2
Craig Burley committed -
From-SVN: r27237
Craig Burley committed -
From-SVN: r27236
Craig Burley committed -
From-SVN: r27235
Jeff Law committed
-
- 28 May, 1999 10 commits
-
-
From-SVN: r27233
Craig Burley committed -
From-SVN: r27232
Robert Lipe committed -
From-SVN: r27231
Eric Raskin committed -
* java/net/DatagramSocket.java (laddr): Removed. (DatagramSocket): Removed attempts to get or set laddr if null. (getLocalAddress): Reimplemented per spec. * java/net/MulticastSocket.java (setTimeToLive): Throw exception when ttl is 0. (joinGroup): Throw NullPointerException if any argument is null. (leaveGroup): ditto. * java/net/PlainDatagramSocketImpl.java: Updated comments. * java/net/PlainSocketImpl.java (timeout): Added. (getInputStream): Added FIXME comment on how to support timeouts for TCP. * java/net/ServerSocket.java (ServerSocket): Added FIXME comment. * java/net/Socket.java: Added FIXME comments to identify conflicting specs between the JCL and JDK 1.2 documents. * java/net/natPlainDatagramSocketImpl.cc (bind): Use INADDR_ANY if host is null. Get localport value resolved by kernel if bind lport is 0. (receive): Implemented support for timeouts in UDP. (setOption): Implemented based on natPlainSocketImpl version. (getOption): ditto. * java/net/natPlainSocketImpl.cc (bind): Get localport value resolved by kernel if bind lport is 0. (connect): Get localport value resolved by kernel if bind wasn't done to set localport. (accept): Implemented support for timeouts for ServerSocket. (setOption): Save value for SO_TIMEOUT. (getOption): Return timeout for SO_TIMEOUT. From-SVN: r27230
Warren Levy committed -
Fri May 28 18:22:45 1999 Alexandre Petit-Bianco <apbianco@cygnus.com> * parse.y (lookup_field_wrapper): Unified returned value to NULL or the searched field decl. Fri May 28 11:34:05 1999 Alexandre Petit-Bianco <apbianco@cygnus.com> * parse.y (fold_constant_for_init): Convert numerical constant values to the type of the assigned field. Thu May 27 19:57:40 1999 Alexandre Petit-Bianco <apbianco@cygnus.com> * expr.c (lookup_field): Relaxed the test on class loading error detection. * parse.y (fold_constant_for_init): Enabeled old code. Wed May 26 18:06:02 1999 Alexandre Petit-Bianco <apbianco@cygnus.com> * parse.y (valid_ref_assignconv_cast_p): Let `_Jv_CheckCast' decide the validity of the cast of a java.lang.Cloneable reference to an array. (patch_conditional_expr): Fixed first argument passed to binary_numeric_promotion. From-SVN: r27229
Alexandre Petit-Bianco committed -
From-SVN: r27223
Craig Burley committed -
From-SVN: r27222
Robert Lipe committed -
* putenv.c: Include ansidecl.h to define `const'. * setenv.c: Likewise. From-SVN: r27221
Kaveh R. Ghazi committed -
* i386/t-dgux (EXTRA_PARTS): Add crti.o (crti.o): Add build rule and dependencies. From-SVN: r27218
Eric Raskin committed -
* rs6000/sysv4.h (CC1_SPEC): Add support for -profile (LIB_LINUX_SPEC): Likewise. (LIB_LINUX_SPEC): Add support for -pthread (CPP_OS_LINUX_SPEC): Likewise. (CPP_SYSV_SPEC): Avoid redefinitions if both -fpic and -fPIC are specified From-SVN: r27217
Franz Sirl committed
-