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/tc-fr30.h

    r970 r1973  
    11/* tc-fr30.h -- Header file for tc-fr30.c.
    2    Copyright (C) 1998-2014 Free Software Foundation, Inc.
     2   Copyright (C) 1998-2016 Free Software Foundation, Inc.
    33
    44   This file is part of GAS, the GNU Assembler.
     
    5959/* We need a special version of the TC_START_LABEL macro so that we
    6060   allow the LDI:8, LDI:20, LDI:32 and delay slot instructions to be
    61    parsed as such. We need to be able to change the contents of
    62    the local variable 'c' which is passed to this macro as 'character'.  */
    63 #define TC_START_LABEL(character, s, i_l_p)                             \
    64   ((character) != ':' ? 0 : (character = fr30_is_colon_insn (s)) ? 0 : ((character = ':'), 1))
    65 extern char fr30_is_colon_insn (char *);
     61   parsed as such.  We need to be able to change the contents of the
     62   var storing what was at the NUL delimiter.  */
     63#define TC_START_LABEL(STR, NUL_CHAR, NEXT_CHAR)                \
     64  (NEXT_CHAR == ':' && !fr30_is_colon_insn (STR, &NUL_CHAR))
     65extern int fr30_is_colon_insn (char *, char *);
Note: See TracChangeset for help on using the changeset viewer.