1. 05 Nov, 1997 2 commits
  2. 04 Nov, 1997 6 commits
  3. 03 Nov, 1997 12 commits
  4. 02 Nov, 1997 10 commits
  5. 01 Nov, 1997 4 commits
  6. 31 Oct, 1997 6 commits
    • except.c (push_eh_info): Pass the number of fields - 1 down, not the exact number of fields. · cf9d67e3
              * except.c (push_eh_info): Pass the number of fields - 1 down, not
              the exact number of fields.
      
      cuz in finish_builtin_type, its comment sez
      
         LEN is the number of elements
         in FIELDS minus one, or put another way, it is the maximum subscript
         used in FIELDS.
      
      and its code does
      
        for (i = 0; i < len; i++)
          {
            layout_type (TREE_TYPE (fields[i]));
            DECL_FIELD_CONTEXT (fields[i]) = type;
            TREE_CHAIN (fields[i]) = fields[i+1];
          }
        DECL_FIELD_CONTEXT (fields[i]) = type;
        DECL_CLASS_CONTEXT (fields[i]) = type;
      
      thus expecting the final ones to be fields[4], not fields[5] (which is
      the actual size from 0, not the last field member)
      
      From-SVN: r16257
      Brendan Kehoe committed
    • * version.c: Bump for snapshot. · 27ca375a
      From-SVN: r16255
      Jeffrey A Law committed
    • Fix typo. · 468c74c3
      From-SVN: r16253
      Jeff Law committed
    • Makefile.in (install targets): Add a dummy target for sunos make. · 53ca5d4f
              * Makefile.in (install targets): Add a dummy target for sunos make.
              (SUBDIR): Remove 'info'.  It's unneeded.
      
      From-SVN: r16252
      Jeffrey A Law committed
    • dwarf2out.c (output_call_frame_info): Use ASM_OUTPUT_ASCII to output ASCII by default. · 8d4e65a6
              * dwarf2out.c (output_call_frame_info): Use ASM_OUTPUT_ASCII to
              output ASCII by default.  Only use ASM_OUTPUT_DWARF_STRING if
              flag_debug_asm is on.
              (output_die, output_pubnames, output_line_info): Likewise.
      
      From-SVN: r16251
      Jeffrey A Law committed
    • alias.c (init_alias_analysis): Add struct_value_incoming_rtx and… · ec907dd8
      alias.c (init_alias_analysis): Add struct_value_incoming_rtx and static_chain_rtx into the potential base...
      
              * alias.c (init_alias_analysis): Add struct_value_incoming_rtx
              and static_chain_rtx into the potential base values array if
              they are registers.
      Fixes bugs exposed by improved alias propagation code.
      
              * alias.c (new_reg_base_value): New array of potential base values.
              (unique_id): Now file scoped static.
              (find_base_value, case REG): Return the value in reg_base_value
              array for the REG if it exists.  Else, return the value from
              new_reg_base_value if copying args and REG is a hard register.
              (find_base_value, case PLUS): If either operand of the PLUS is
              a REG, try to get its base value.  Handle base + index and
              index + base.
              (record_set): Use new_reg_base_value instead of reg_base_value.
              (init_alias_analysis): Allocate space for new_reg_base_value too.
              Rework code to iterate over the insns propagating base value
              information until nothing changes.
      Improve alias propagation significantly.
      
      From-SVN: r16250
      Jeffrey A Law committed