Changeset 1973 for binutils/trunk/gas/config/tc-fr30.h
- 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/tc-fr30.h ¶
r970 r1973 1 1 /* tc-fr30.h -- Header file for tc-fr30.c. 2 Copyright (C) 1998-201 4Free Software Foundation, Inc.2 Copyright (C) 1998-2016 Free Software Foundation, Inc. 3 3 4 4 This file is part of GAS, the GNU Assembler. … … 59 59 /* We need a special version of the TC_START_LABEL macro so that we 60 60 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 of62 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)) 65 extern int fr30_is_colon_insn (char *, char *);
Note:
See TracChangeset
for help on using the changeset viewer.