Changeset 1973 for binutils/trunk/gas/config/obj-som.c
- Timestamp:
- Feb 6, 2017, 1:00:00 PM (8 years ago)
- Location:
- binutils/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
binutils/trunk ¶
-
Property svn:mergeinfo
set to
/binutils/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified binutils/trunk/gas/config/obj-som.c ¶
r970 r1973 1 1 /* SOM object file format. 2 Copyright (C) 1993-201 4Free Software Foundation, Inc.2 Copyright (C) 1993-2016 Free Software Foundation, Inc. 3 3 4 4 This file is part of GAS, the GNU Assembler. … … 211 211 segT space; 212 212 subsegT saved_subseg = now_subseg; 213 char *p, *file; 213 char *p; 214 const char * file; 214 215 unsigned int stroff; 215 216 … … 242 243 p = frag_more (12); 243 244 memset (p, 0, 12); 244 as_where (&file,(unsigned int *) NULL);245 file = as_where ((unsigned int *) NULL); 245 246 stroff = get_stab_string_offset (file, "$GDB_STRINGS$"); 246 247 know (stroff == 1); … … 303 304 do 304 305 { 305 name = input_line_pointer; 306 c = get_symbol_end (); 306 c = get_symbol_name (&name); 307 307 symbolP = symbol_find_or_make (name); 308 308 *input_line_pointer = c; 309 SKIP_WHITESPACE ();309 SKIP_WHITESPACE_AFTER_NAME (); 310 310 S_SET_WEAK (symbolP); 311 311 if (c == ',')
Note:
See TracChangeset
for help on using the changeset viewer.