]> gcc.gnu.org Git - gcc.git/log
gcc.git
31 years ago(sys/stream.h, sys/strsubr.h): Delete spurious `extern'
Richard Stallman [Wed, 14 Oct 1992 04:37:09 +0000 (04:37 +0000)]
(sys/stream.h, sys/strsubr.h): Delete spurious `extern'
in various structure definitions.

From-SVN: r2452

31 years ago(reg_names): Make it static. Use DEBUG_REGISTER_NAMES if that's defined.
Richard Stallman [Wed, 14 Oct 1992 04:23:52 +0000 (04:23 +0000)]
(reg_names): Make it static.  Use DEBUG_REGISTER_NAMES if that's defined.

(DEBUG_PRINT_REG): Define if not defined.
(print_rtx): Use DEBUG_PRINT_REG for hard regs.

(reg_name): Moved here.

From-SVN: r2451

31 years ago(jump_optimize): Don't optimize jumps to store-flag insns
Richard Stallman [Wed, 14 Oct 1992 04:21:51 +0000 (04:21 +0000)]
(jump_optimize): Don't optimize jumps to store-flag insns
when BLKmode values are being compared.

From-SVN: r2450

31 years ago(single_set): fix typo in REG_UNUSED check.
Richard Stallman [Wed, 14 Oct 1992 04:02:16 +0000 (04:02 +0000)]
(single_set): fix typo in REG_UNUSED check.

From-SVN: r2449

31 years agoupdates for 2.3
Chris Smith [Wed, 14 Oct 1992 01:27:21 +0000 (01:27 +0000)]
updates for 2.3

From-SVN: r2448

31 years ago(output_asm_insn): Advance over the = when processing %=.
Richard Stallman [Wed, 14 Oct 1992 01:21:59 +0000 (01:21 +0000)]
(output_asm_insn): Advance over the = when processing %=.

From-SVN: r2447

31 years ago(simplify_binary_operation): Insure that folded >> extends
Richard Stallman [Wed, 14 Oct 1992 01:20:21 +0000 (01:20 +0000)]
(simplify_binary_operation): Insure that folded >> extends
the sign even if the host bootstrap compiler doesn't.

From-SVN: r2446

31 years agoUse GEN_INT when appropriate.
Richard Kenner [Tue, 13 Oct 1992 23:08:44 +0000 (19:08 -0400)]
Use GEN_INT when appropriate.

(define_attr type): New types for SQRT.
(call patterns): Use SCRATCH for LR0.
Use new predicate call_operand so that some integers can be
used as addresses; fix CALLI so it doesn't accept constant.
(EXBYTE, EXTHW, INBYTE, INHW): Use ZERO_EXTEND instead of AND
when combine will make it.
Use PSImode for BP value and don't reference BP explicitly.
Clean up define_expands for these operations.
(rotlsi3): Use PSImode pseudo for FC.
(sign_extend): Sign extension insns clobber BP.
({load,store}_multiple): Use PSImode pseudo for CR.
(MTSR): Add pattern for TRUNCATE from SImode to PSImode.
(sqrtsf2, sqrtdf2, movpsi): New patterns.
(load/store bytes/halfword): Clean up to accept temporaries as
input and use PSImode when required.
(movhi, movqi): Allocate temporaries here.
(reload_inqi, reload_outqi, reload_inhi, reload_outhi): New patterns.
(movdf, movdi, movti): Use SCRATCH for BP register.
(reload_{in,out}{df,di,ti}): New patterns.

From-SVN: r2445

31 years ago(PROMOTE_MODE, ADJUST_COST): New macros.
Richard Kenner [Tue, 13 Oct 1992 23:07:51 +0000 (19:07 -0400)]
(PROMOTE_MODE, ADJUST_COST): New macros.

(CALL_USED_REGISTERS): LR0 is call-used.
(HARD_REGNO_MODE_OK): Handle MODE_PARTIAL_INT and the special
registers that can only hold those modes.
(MODES_TIEABLE_P): Clean up and handle MODE_PARTIAL_INT modes.
(enum reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS): Add new
classes LR0_REGS, FC_REGS, and CR_REGS.
(REGNO_REG_CLASS, REG_CLASS_FROM_LETTER): Likewise.
(PREDICATE_CODES): Update for new and deleted predicates.

From-SVN: r2444

31 years agoNow includes reload.h.
Richard Kenner [Tue, 13 Oct 1992 23:07:05 +0000 (19:07 -0400)]
Now includes reload.h.

(spec_reg_operand): Validate mode and know that some regs support
MODE_PARTIAL_INT and some MODE_INT.
(call_operand, reload_memory_operand, a29k_get_reloaded_address)
 New functions.
(in_operand): Allow constants with MODE_PARTIAL_INT.
(out_operand): Allow special registers with any mode.
Any MEM a word or wider is valid.
(extend_operator): Deleted.
(secondary_reload_class): A pseudo is the same as memory; we need
BP_REGS for multi-word memory or for bytes and halfword if -mndw.
(print_operand): Delete %X; add %m.
(print_operand, case 'F'): Check for SYMBOL_REF.

From-SVN: r2443

31 years ago(stdio.h): Fix va_list when preceeded by a *.
Richard Stallman [Tue, 13 Oct 1992 20:53:10 +0000 (20:53 +0000)]
(stdio.h): Fix va_list when preceeded by a *.

From-SVN: r2442

31 years agospc-sol2.h (STARTFILE_SPEC): Add crtbegin.o.
Brendan Kehoe [Tue, 13 Oct 1992 18:56:57 +0000 (14:56 -0400)]
spc-sol2.h (STARTFILE_SPEC): Add crtbegin.o.

        * spc-sol2.h (STARTFILE_SPEC): Add crtbegin.o.
        (LIB_SPEC): Add crtend.o for running ctors/dtors.
        * t-sol2 (EXTRA_PARTS): Add crtbegin.o and crtend.o for C++.
        (FIXINCLUDES): Deleted.
        * configure (sparc-*-solaris2*): Set fixincludes here.

From-SVN: r2441

31 years ago(loop_optimize): Verify that max_uid_for_loop is still larger than the uid of any...
Tom Wood [Tue, 13 Oct 1992 18:45:45 +0000 (18:45 +0000)]
(loop_optimize): Verify that max_uid_for_loop is still larger than the uid of any insn.

(loop_optimize): Verify that max_uid_for_loop is still
larger than the uid of any insn.  Increase the number of exit
blocks from 4 to 32 per loop.
(find_and_verify_loops): Stop trying to relocate exit blocks when
allocating a new label would exceed max_uid_for_loop.

From-SVN: r2440

31 years agoSimplify extraction of YYEMPTY from cp-parse.c.
Richard Stallman [Tue, 13 Oct 1992 18:35:12 +0000 (18:35 +0000)]
Simplify extraction of YYEMPTY from cp-parse.c.

Generate c-parse.y, objc-parse.y from c-parse.in if required.

From-SVN: r2439

31 years ago(in_branch_delay): Allow fpload and fpstore.
Jim Wilson [Tue, 13 Oct 1992 18:31:01 +0000 (11:31 -0700)]
(in_branch_delay): Allow fpload and fpstore.

From-SVN: r2438

31 years agoCorrect comment from last change.
Jim Wilson [Tue, 13 Oct 1992 18:29:02 +0000 (11:29 -0700)]
Correct comment from last change.

From-SVN: r2437

31 years ago(main): Only install a signal handler for signals that already have handlers.
Jim Wilson [Tue, 13 Oct 1992 18:24:57 +0000 (11:24 -0700)]
(main): Only install a signal handler for signals that already have handlers.

(main): Only install a signal handler for signals
that already have handlers.
(fork_execute): Don't ignore signals before calling do_wait.

From-SVN: r2436

31 years ago(*): Change 'f' constraint for dest to '*f' if it is not the only alternative.
Jim Wilson [Tue, 13 Oct 1992 18:21:37 +0000 (11:21 -0700)]
(*): Change 'f' constraint for dest to '*f' if it is not the only alternative.

(*):  Change 'f' constraint for dest to '*f' if it is not the
only alternative.  Add '*f' dest constraints to all patterns where
it is valid but was previously missing.

From-SVN: r2435

31 years ago(call, call_value): No longer call i960_expand_call,
Jim Wilson [Tue, 13 Oct 1992 18:18:30 +0000 (11:18 -0700)]
(call, call_value): No longer call i960_expand_call,

instead call call_internal/call_value_internal pattern.
(call_internal, call_value_internal): Rewrite patterns to pass new
args to i960_output_call_insn.

From-SVN: r2434

31 years ago(g14_save_reg): Delete variable.
Jim Wilson [Tue, 13 Oct 1992 18:17:38 +0000 (11:17 -0700)]
(g14_save_reg): Delete variable.

(i960_output_call_insn): Add two new parameters arg_pointer and
scratch_reg.  Save/set/restore g14 if necessary.
(i960_expand_call): Delete function.

From-SVN: r2433

31 years ago(OVERRIDE_OPTIONS): Enable function inlining.
Jim Wilson [Tue, 13 Oct 1992 18:16:59 +0000 (11:16 -0700)]
(OVERRIDE_OPTIONS): Enable function inlining.

From-SVN: r2432

31 years ago(movstrsi+1): Add `+' to constraints for clobbered inputs.
Jim Wilson [Tue, 13 Oct 1992 18:12:24 +0000 (11:12 -0700)]
(movstrsi+1): Add `+' to constraints for clobbered inputs.

From-SVN: r2431

31 years ago(i960_output_call_insn): Emit bx instead of b, callx instead of callj.
Jim Wilson [Tue, 13 Oct 1992 18:09:59 +0000 (11:09 -0700)]
(i960_output_call_insn):  Emit bx instead of b, callx instead of callj.

From-SVN: r2430

31 years ago(sparc_frw_output_function_prologue): Frame pointer base
Jim Wilson [Tue, 13 Oct 1992 18:06:26 +0000 (11:06 -0700)]
(sparc_frw_output_function_prologue): Frame pointer base
must be same as for regular sparc code.

From-SVN: r2429

31 years ago(mostly_false_jump): Recognize a sequence properly.
Tom Wood [Tue, 13 Oct 1992 17:09:04 +0000 (17:09 +0000)]
(mostly_false_jump): Recognize a sequence properly.

From-SVN: r2428

31 years ago(ext shift patterns): No longer needed.
Tom Wood [Tue, 13 Oct 1992 17:08:49 +0000 (17:08 +0000)]
(ext shift patterns): No longer needed.

From-SVN: r2427

31 years ago(subst): Don't change a conditional branch into a conditional move.
Tom Wood [Tue, 13 Oct 1992 10:01:01 +0000 (10:01 +0000)]
(subst): Don't change a conditional branch into a conditional move.

From-SVN: r2426

31 years ago(install-fixincludes): Only delete an existing
Richard Stallman [Tue, 13 Oct 1992 07:27:14 +0000 (07:27 +0000)]
(install-fixincludes): Only delete an existing
syslimits.h if we install limits.h over it.

From-SVN: r2425

31 years ago* pa.h (LEGITIMIZE_ADDRESS): Fix typo.
Jeff Law [Tue, 13 Oct 1992 05:30:58 +0000 (23:30 -0600)]
* pa.h (LEGITIMIZE_ADDRESS): Fix typo.

From-SVN: r2424

31 years ago(pop_function_context, push_function_context):
Richard Stallman [Tue, 13 Oct 1992 05:13:01 +0000 (05:13 +0000)]
(pop_function_context, push_function_context):

Call {save,restore}_varasm_status.

From-SVN: r2423

31 years ago(install-common): Put - on cmd that handles protoize.
Richard Stallman [Tue, 13 Oct 1992 05:07:59 +0000 (05:07 +0000)]
(install-common): Put - on cmd that handles protoize.

(gcc.o, cccp.o): Define TOOLDIR for the compilation.
(all HOST_PREFIX_1 targets): Fix typos.

From-SVN: r2422

31 years agoentered into RCS
Richard Stallman [Tue, 13 Oct 1992 04:43:39 +0000 (04:43 +0000)]
entered into RCS

From-SVN: r2421

31 years agoInclude hconfig.h, not config.h.
Richard Stallman [Tue, 13 Oct 1992 04:40:12 +0000 (04:40 +0000)]
Include hconfig.h, not config.h.

From-SVN: r2420

31 years agoInclude hconfig.h, not config.h.
Richard Stallman [Tue, 13 Oct 1992 04:24:45 +0000 (04:24 +0000)]
Include hconfig.h, not config.h.

From-SVN: r2419

31 years agoMake hconfig.h.
Richard Stallman [Tue, 13 Oct 1992 04:22:19 +0000 (04:22 +0000)]
Make hconfig.h.

From-SVN: r2418

31 years agoMake hconfig.h.
Richard Stallman [Tue, 13 Oct 1992 04:14:27 +0000 (04:14 +0000)]
Make hconfig.h.

From-SVN: r2417

31 years ago(PRINT_OPERAND): Detect `double' constants by DFmode,
Richard Stallman [Mon, 12 Oct 1992 22:33:26 +0000 (22:33 +0000)]
(PRINT_OPERAND): Detect `double' constants by DFmode,

since VOIDmode means an integer.

From-SVN: r2416

31 years ago(reg_names): Reinstate the definition here.
Richard Stallman [Mon, 12 Oct 1992 22:21:04 +0000 (22:21 +0000)]
(reg_names): Reinstate the definition here.

From-SVN: r2415

31 years ago(cmpstrM patterns): Compare strings of unsigned chars, not strings of
James Van Artsdalen [Mon, 12 Oct 1992 21:38:15 +0000 (21:38 +0000)]
(cmpstrM patterns): Compare strings of unsigned chars, not strings of
signed chars.

From-SVN: r2414

31 years ago(alter_cond): If CC_NOT_SIGNED, convert signed conditions to unsigned.
James Van Artsdalen [Mon, 12 Oct 1992 21:37:11 +0000 (21:37 +0000)]
(alter_cond): If CC_NOT_SIGNED, convert signed conditions to unsigned.

From-SVN: r2413

31 years ago(CC_NOT_SIGNED): New macro.
James Van Artsdalen [Mon, 12 Oct 1992 21:36:50 +0000 (21:36 +0000)]
(CC_NOT_SIGNED): New macro.

From-SVN: r2412

31 years ago(try_combine): Save DEST of NI2PAT before calling recog_for_combine,
Richard Kenner [Mon, 12 Oct 1992 20:55:45 +0000 (16:55 -0400)]
(try_combine): Save DEST of NI2PAT before calling recog_for_combine,

which might make it a PARALLEL.

From-SVN: r2411

31 years agoDelete excess fi in fixing stat.h.
Richard Stallman [Mon, 12 Oct 1992 20:25:53 +0000 (20:25 +0000)]
Delete excess fi in fixing stat.h.

From-SVN: r2410

31 years ago(try_combine): Fix typo in last change involving single_set.
Richard Kenner [Mon, 12 Oct 1992 15:57:17 +0000 (11:57 -0400)]
(try_combine): Fix typo in last change involving single_set.

From-SVN: r2409

31 years ago(PRINT_REG): Undo Oct 11 change.
James Van Artsdalen [Mon, 12 Oct 1992 13:12:08 +0000 (13:12 +0000)]
(PRINT_REG): Undo Oct 11 change.

(DEBUG_PRINT_REG): New macro, used from print-rtl.c.

From-SVN: r2408

31 years ago(gen_lowpart_common): Allow MODE_PARTIAL_INT where MODE_INT is
Richard Kenner [Mon, 12 Oct 1992 10:31:07 +0000 (06:31 -0400)]
(gen_lowpart_common): Allow MODE_PARTIAL_INT where MODE_INT is
allowed.

From-SVN: r2407

31 years ago(try_combine): Properly call single_set when validating the result of
Richard Kenner [Mon, 12 Oct 1992 10:30:37 +0000 (06:30 -0400)]
(try_combine): Properly call single_set when validating the result of
a define_split.

From-SVN: r2406

31 years ago(simplify_subtraction): Declared.
Richard Stallman [Mon, 12 Oct 1992 08:27:35 +0000 (08:27 +0000)]
(simplify_subtraction): Declared.

From-SVN: r2405

31 years ago(simplify_subtraction): New function.
Richard Stallman [Mon, 12 Oct 1992 08:25:33 +0000 (08:25 +0000)]
(simplify_subtraction): New function.

From-SVN: r2404

31 years ago(output_addr_const): Call simplify_subtraction.
Richard Stallman [Mon, 12 Oct 1992 08:23:25 +0000 (08:23 +0000)]
(output_addr_const): Call simplify_subtraction.

From-SVN: r2403

31 years ago(calls_alloca): Don't look within DECL_INITIAL if it's 0.
Richard Stallman [Mon, 12 Oct 1992 04:35:54 +0000 (04:35 +0000)]
(calls_alloca): Don't look within DECL_INITIAL if it's 0.

From-SVN: r2402

31 years ago(PRINT_REG): Make register name arrays static within this macro.
James Van Artsdalen [Mon, 12 Oct 1992 03:26:02 +0000 (03:26 +0000)]
(PRINT_REG): Make register name arrays static within this macro.

From-SVN: r2401

31 years ago(merge_trees): When splitting, remember to clear DUPNO in addition to
Richard Kenner [Sun, 11 Oct 1992 20:27:46 +0000 (16:27 -0400)]
(merge_trees): When splitting, remember to clear DUPNO in addition to
the other things we can test.

From-SVN: r2400

31 years ago(general_operand, immediate_operand, const_double_operand): Allow CONST_INT with...
Richard Kenner [Sun, 11 Oct 1992 20:27:23 +0000 (16:27 -0400)]
(general_operand, immediate_operand, const_double_operand): Allow CONST_INT with MODE_PARTIAL_INT.

(general_operand, immediate_operand, const_double_operand): Allow CONST_INT
with MODE_PARTIAL_INT.
(nonmemory_operand): Likewise.

From-SVN: r2399

31 years ago(notice_update_cc): Only set CC_IN_80387 for float compares.
James Van Artsdalen [Sun, 11 Oct 1992 13:23:31 +0000 (13:23 +0000)]
(notice_update_cc): Only set CC_IN_80387 for float compares.

From-SVN: r2398

31 years ago(USE_C_ALLOCA): New macro. Define if not using GNU C's builtin alloca.
James Van Artsdalen [Sun, 11 Oct 1992 12:56:41 +0000 (12:56 +0000)]
(USE_C_ALLOCA): New macro.  Define if not using GNU C's builtin alloca.

From-SVN: r2397

31 years agoInitial revision
James Van Artsdalen [Sun, 11 Oct 1992 12:51:40 +0000 (12:51 +0000)]
Initial revision

From-SVN: r2396

31 years ago(movdi): Use D code for operand 1.
Richard Stallman [Sun, 11 Oct 1992 05:26:16 +0000 (05:26 +0000)]
(movdi): Use D code for operand 1.

From-SVN: r2395

31 years ago(PRINT_OPERAND): Define new code, D.
Richard Stallman [Sun, 11 Oct 1992 05:25:55 +0000 (05:25 +0000)]
(PRINT_OPERAND): Define new code, D.

From-SVN: r2394

31 years ago(reg_name): Deleted.
Richard Stallman [Sat, 10 Oct 1992 20:52:07 +0000 (20:52 +0000)]
(reg_name): Deleted.

From-SVN: r2393

31 years ago(struct function): New fields const_rtx_hash_table,
Richard Stallman [Sat, 10 Oct 1992 09:44:58 +0000 (09:44 +0000)]
(struct function): New fields const_rtx_hash_table,

const_rtx_sym_hash_table, first_pool, last_pool, pool_offset.

From-SVN: r2392

31 years ago(varasm.o): Dep on function.h.
Richard Stallman [Sat, 10 Oct 1992 09:44:39 +0000 (09:44 +0000)]
(varasm.o): Dep on function.h.

From-SVN: r2391

31 years ago(TARGET_DEFAULT): New macro - don't make TARGET_IEE_FP default for SCO.
James Van Artsdalen [Sat, 10 Oct 1992 09:31:37 +0000 (09:31 +0000)]
(TARGET_DEFAULT): New macro - don't make TARGET_IEE_FP default for SCO.

From-SVN: r2390

31 years ago(DBX_DEBUGGING_INFO): Defined.
Richard Stallman [Sat, 10 Oct 1992 01:34:31 +0000 (01:34 +0000)]
(DBX_DEBUGGING_INFO): Defined.

From-SVN: r2389

31 years ago(sparc_type_code): Return reasonable result for COMPLEX_TYPE.
Jim Wilson [Fri, 9 Oct 1992 22:10:02 +0000 (15:10 -0700)]
(sparc_type_code): Return reasonable result for COMPLEX_TYPE.

From-SVN: r2388

31 years ago(return): Always available once reload has completed.
Tom Wood [Fri, 9 Oct 1992 18:32:50 +0000 (18:32 +0000)]
(return): Always available once reload has completed.

(epilogue): Use a return insn rather than an indirect jump.

From-SVN: r2387

31 years ago(start_of_epilogue_needs): New variable.
Tom Wood [Fri, 9 Oct 1992 18:31:57 +0000 (18:31 +0000)]
(start_of_epilogue_needs): New variable.

(mark_target_live_regs): Add in start_of_epilogue_needs when
NOTE_INSN_EPILOGUE_BEG is scanned.
(dbr_schedule): Compute start_of_epilogue_needs and update
end_of_function_needs to include sets by all instructions
following NOTE_INSN_EPILOGUE_BEG.

From-SVN: r2386

31 years ago(mark_target_live_regs): Fix bug in last change.
Richard Kenner [Fri, 9 Oct 1992 18:13:13 +0000 (14:13 -0400)]
(mark_target_live_regs): Fix bug in last change.

From-SVN: r2385

31 years ago(aggregate_value_p): Return 1 if regs we would use are not all call-clobbered.
Richard Stallman [Fri, 9 Oct 1992 16:59:56 +0000 (16:59 +0000)]
(aggregate_value_p): Return 1 if regs we would use are not all call-clobbered.

From-SVN: r2384

31 years ago(POPSTACK): Pop discarded elts off all the stacks as we go.
Richard Stallman [Fri, 9 Oct 1992 16:59:32 +0000 (16:59 +0000)]
(POPSTACK): Pop discarded elts off all the stacks as we go.

From-SVN: r2383

31 years ago(gen_lowpart_common, gen_highpart, operand_subword): Don't make a new
Richard Kenner [Fri, 9 Oct 1992 11:30:07 +0000 (07:30 -0400)]
(gen_lowpart_common, gen_highpart, operand_subword): Don't make a new
REG for stack, frame, or arg pointer.

From-SVN: r2382

31 years ago(subst, case SUBREG): Don't make a new REG for stack, frame, or arg
Richard Kenner [Fri, 9 Oct 1992 11:29:23 +0000 (07:29 -0400)]
(subst, case SUBREG): Don't make a new REG for stack, frame, or arg
pointer.

From-SVN: r2381

31 years ago(optimize_reg_copy_1): Tighten up code to properly handle the case when...
Richard Kenner [Fri, 9 Oct 1992 11:28:53 +0000 (07:28 -0400)]
(optimize_reg_copy_1): Tighten up code to properly handle the case when...

(optimize_reg_copy_1): Tighten up code to properly handle the case
when SRC or DEST is a multi-word hard register and only some parts of
the register are set or used.  Also, avoid updating register status
for DEST if we can't do the optimization.

From-SVN: r2380

31 years ago(jump_optimize): Only use a REG as a target.
Richard Kenner [Fri, 9 Oct 1992 11:28:00 +0000 (07:28 -0400)]
(jump_optimize): Only use a REG as a target.

From-SVN: r2379

31 years ago*** empty log message ***
Richard Kenner [Fri, 9 Oct 1992 11:27:31 +0000 (07:27 -0400)]
*** empty log message ***

From-SVN: r2378

31 years ago(floating_exact_log2, standard_68881_constant_p):
Richard Stallman [Fri, 9 Oct 1992 04:41:02 +0000 (04:41 +0000)]
(floating_exact_log2, standard_68881_constant_p):

(standard_sun_fpa_constant_p): Use REAL_VALUE_FROM_CONST_DOUBLE.
(print_operand): Likewise.

From-SVN: r2377

31 years agoadded missing then
Arne H. Juul [Fri, 9 Oct 1992 01:48:26 +0000 (01:48 +0000)]
added missing then

From-SVN: r2376

31 years ago(assign_parms): Provide a safe value for
Tom Wood [Thu, 8 Oct 1992 22:08:29 +0000 (22:08 +0000)]
(assign_parms): Provide a safe value for
DECL_INCOMING_RTL in case of syntax errors.

From-SVN: r2375

31 years agoDefine PTRSIZE_TYPE, WCHAR_TYPE, and SIZE_TYPE for OSF/1.
Michael Meissner [Thu, 8 Oct 1992 21:14:49 +0000 (21:14 +0000)]
Define PTRSIZE_TYPE, WCHAR_TYPE, and SIZE_TYPE for OSF/1.

From-SVN: r2374

31 years agoFix shared library in i386; correctly spell macro in mips.h.
Michael Meissner [Thu, 8 Oct 1992 20:07:04 +0000 (20:07 +0000)]
Fix shared library in i386; correctly spell macro in mips.h.

From-SVN: r2373

31 years ago(install-common-headers): Fix dir in chmods for assert.h.
Richard Stallman [Thu, 8 Oct 1992 19:43:37 +0000 (19:43 +0000)]
(install-common-headers): Fix dir in chmods for assert.h.

From-SVN: r2372

31 years ago(__savereg, va_arg): Put uses of __va in parens.
Richard Stallman [Thu, 8 Oct 1992 18:22:34 +0000 (18:22 +0000)]
(__savereg, va_arg): Put uses of __va in parens.

From-SVN: r2371

31 years agopa.md (fp_alu function unit, case fpcc): Fpcc instructions use the fpalu unit.
Jeff Law [Thu, 8 Oct 1992 17:21:43 +0000 (11:21 -0600)]
pa.md (fp_alu function unit, case fpcc): Fpcc instructions use the fpalu unit.

* pa.md (fp_alu function unit, case fpcc): Fpcc instructions use
the fpalu unit.  In the most common case their result will be used
in a ftest instruction.  Minimum distance between the fcmp and
ftest instruction is 4.

From-SVN: r2370

31 years ago(dwarfout_init...
Tom Wood [Thu, 8 Oct 1992 10:42:19 +0000 (10:42 +0000)]
(dwarfout_init...

(dwarfout_init, dwarfout_finish): Don't output labels
or .debug_aranges entries for .data1 and .rodata1 as these
sections aren't currently used.

From-SVN: r2369

31 years agoFix a simple typo.
Mike Stump [Thu, 8 Oct 1992 09:34:37 +0000 (09:34 +0000)]
Fix a simple typo.

From-SVN: r2368

31 years ago(PATHLENGH): Change from 20 to 10 to speed up compilations.
Richard Kenner [Thu, 8 Oct 1992 08:44:02 +0000 (04:44 -0400)]
(PATHLENGH): Change from 20 to 10 to speed up compilations.

From-SVN: r2367

31 years ago(mark_target_live_regs): Look at USE insns made by update_block when scanning forward...
Richard Kenner [Thu, 8 Oct 1992 08:42:53 +0000 (04:42 -0400)]
(mark_target_live_regs): Look at USE insns made by update_block when scanning forward past target.

(mark_target_live_regs): Look at USE insns made by update_block when scanning
forward past target.
(mark_target_live_regs, dbr_schedule): Use GET_RTX_CLASS.

From-SVN: r2366

31 years ago(invert_truthvalue): Never alter ARG.
Richard Stallman [Thu, 8 Oct 1992 08:30:25 +0000 (08:30 +0000)]
(invert_truthvalue): Never alter ARG.

From-SVN: r2365

31 years ago(TAGS): Exclude =*.[chy] from tags table.
Richard Stallman [Thu, 8 Oct 1992 08:21:30 +0000 (08:21 +0000)]
(TAGS): Exclude =*.[chy] from tags table.

From-SVN: r2364

31 years ago(yylex): For floats, Use REAL_VALUES_LESS to distinguish underflow from overflow.
Richard Stallman [Thu, 8 Oct 1992 07:13:12 +0000 (07:13 +0000)]
(yylex): For floats, Use REAL_VALUES_LESS to distinguish underflow from overflow.

(yylex): For floats, Use REAL_VALUES_LESS to distinguish
underflow from overflow.  Delete special case for 0.0.

From-SVN: r2363

31 years ago(<sys/signal.h>): Fix types of SIG_DFL, SIG_ERR, SIG_IGN, and SIG_HOLD.
Richard Stallman [Wed, 7 Oct 1992 21:58:26 +0000 (21:58 +0000)]
(<sys/signal.h>):  Fix types of SIG_DFL, SIG_ERR, SIG_IGN, and SIG_HOLD.

(<sys/stat.h>): Turn definitions of stat, lstat, fstat, and mknod
into ANSI syntax and add __ to variables used.

From-SVN: r2362

31 years ago(dwarfout_{begin,end}_function): New functions.
Tom Wood [Wed, 7 Oct 1992 20:24:33 +0000 (20:24 +0000)]
(dwarfout_{begin,end}_function): New functions.

(body_{begin,end}_attribute): New functions.
(dwarf_attr_name): Print AT_body_begin and AT_body_end.
(output_{local,global}_subroutine_die): Output the new attributes.

From-SVN: r2361

31 years ago(enum dwarf_attribute): Add At_body_begin and AT_body_end.
Tom Wood [Wed, 7 Oct 1992 20:24:10 +0000 (20:24 +0000)]
(enum dwarf_attribute): Add At_body_begin and AT_body_end.

From-SVN: r2360

31 years ago(final_scan_insn): Call dwarfout_begin_function.
Tom Wood [Wed, 7 Oct 1992 20:23:56 +0000 (20:23 +0000)]
(final_scan_insn): Call dwarfout_begin_function.

(final_end_function): Call dwarfout_end_function.

From-SVN: r2359

31 years ago(FASTEST_ALIGNMENT): Define as 8 for -m88110 otherwise 4.
Tom Wood [Wed, 7 Oct 1992 20:21:09 +0000 (20:21 +0000)]
(FASTEST_ALIGNMENT): Define as 8 for -m88110 otherwise 4.

(CONSTANT_ALIGNMENT, DATA_ALIGNMENT): Base on FASTEST_ALIGNMENT.
(READONLY_DATA_SECTION): Don't override svr4.h
(ASM_OUTPUT_CASE_LABEL): For svr4, use .rodata.

From-SVN: r2358

31 years ago(movstrsi): No predicate is needed for the source or
Tom Wood [Wed, 7 Oct 1992 20:20:18 +0000 (20:20 +0000)]
(movstrsi): No predicate is needed for the source or
destination.

From-SVN: r2357

31 years agoAdd the modules moveDI96x and moveDI41x through
Tom Wood [Wed, 7 Oct 1992 20:20:00 +0000 (20:20 +0000)]
Add the modules moveDI96x and moveDI41x through
moveDI47x.

From-SVN: r2356

31 years ago(best_from_align): Add a target processor dimension for -m88000, -m88110, and -m88100.
Tom Wood [Wed, 7 Oct 1992 20:19:22 +0000 (20:19 +0000)]
(best_from_align): Add a target processor dimension for -m88000, -m88110, and -m88100.

(best_from_align): Add a target processor dimension for
-m88000, -m88110, and -m88100.
(expand_block_move): Choose method and limits based on -m88xxx option.
(block_move_no_loop): Extend to allow DImode.
(output_call): Use different syntax for GAS.

From-SVN: r2355

31 years agoNew modules added to MOVE_ASM.
Tom Wood [Wed, 7 Oct 1992 20:18:21 +0000 (20:18 +0000)]
New modules added to MOVE_ASM.

From-SVN: r2354

31 years ago(component_decl_list): Do pedwarn for missing semicolon after last field decl.
Richard Stallman [Wed, 7 Oct 1992 19:42:30 +0000 (19:42 +0000)]
(component_decl_list):  Do pedwarn for missing semicolon after last field decl.

From-SVN: r2353

This page took 0.083963 seconds and 5 git commands to generate.