Ignore:
Timestamp:
Feb 6, 2017, 1:00:00 PM (8 years ago)
Author:
Silvan Scherrer
Message:

binutils: update trunk to version 2.27

Location:
binutils/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binutils/trunk

  • TabularUnified binutils/trunk/gas/config/obj-som.c

    r970 r1973  
    11/* SOM object file format.
    2    Copyright (C) 1993-2014 Free Software Foundation, Inc.
     2   Copyright (C) 1993-2016 Free Software Foundation, Inc.
    33
    44   This file is part of GAS, the GNU Assembler.
     
    211211  segT space;
    212212  subsegT saved_subseg = now_subseg;
    213   char *p, *file;
     213  char *p;
     214 const char * file;
    214215  unsigned int stroff;
    215216
     
    242243  p = frag_more (12);
    243244  memset (p, 0, 12);
    244   as_where (&file, (unsigned int *) NULL);
     245  file = as_where ((unsigned int *) NULL);
    245246  stroff = get_stab_string_offset (file, "$GDB_STRINGS$");
    246247  know (stroff == 1);
     
    303304  do
    304305    {
    305       name = input_line_pointer;
    306       c = get_symbol_end ();
     306      c = get_symbol_name (&name);
    307307      symbolP = symbol_find_or_make (name);
    308308      *input_line_pointer = c;
    309       SKIP_WHITESPACE ();
     309      SKIP_WHITESPACE_AFTER_NAME ();
    310310      S_SET_WEAK (symbolP);
    311311      if (c == ',')
Note: See TracChangeset for help on using the changeset viewer.