Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 104860
Collapse All | Expand All

(-)binutils-2.15/bfd/configure.in (-1 / +1 lines)
Lines 7-13 Link Here
7
AC_CANONICAL_SYSTEM
7
AC_CANONICAL_SYSTEM
8
AC_ISC_POSIX
8
AC_ISC_POSIX
9
9
10
AM_INIT_AUTOMAKE(bfd, 2.15)
10
AM_INIT_AUTOMAKE(bfd, 2.15-tinyos)
11
# Uncomment the next line to remove the date from the reported bfd version
11
# Uncomment the next line to remove the date from the reported bfd version
12
is_release=y
12
is_release=y
13
13
(-)binutils-2.15/gas/config/tc-avr.h (-2 / +6 lines)
Lines 113-120 Link Here
113
   would print `12 34 56 78'.  The default value is 4.  */
113
   would print `12 34 56 78'.  The default value is 4.  */
114
#define LISTING_WORD_SIZE 2
114
#define LISTING_WORD_SIZE 2
115
115
116
/* AVR port uses `$' as a logical line separator */
116
/* AVR port uses `$' as a logical line separator and doesn't 
117
#define LEX_DOLLAR 0
117
   allow it in symbols. We allow it in the middle of symbols. 
118
   We also hack get_symbol_end to disallow it at the end of a symbol. */
119
#define LEX_DOLLAR 1
120
#define TC_EOL_IN_INSN(PTR)	(*(PTR) == '$' && is_part_of_name((PTR)[-1]) && is_part_of_name((PTR)[1]))
121
#define TC_FORBID_DOLLAR_AT_END
118
122
119
/* An `.lcomm' directive with no explicit alignment parameter will
123
/* An `.lcomm' directive with no explicit alignment parameter will
120
   use this macro to set P2VAR to the alignment that a request for
124
   use this macro to set P2VAR to the alignment that a request for
(-)binutils-2.15/gas/config/tc-msp430.h (-1 / +1 lines)
Lines 101-107 Link Here
101
     example, a value of 2 might print `1234 5678' where a value of 1
101
     example, a value of 2 might print `1234 5678' where a value of 1
102
     would print `12 34 56 78'.  The default value is 4.  */
102
     would print `12 34 56 78'.  The default value is 4.  */
103
103
104
#define LEX_DOLLAR 0
104
#undef LEX_DOLLAR
105
/* MSP430 port does not use `$' as a logical line separator */
105
/* MSP430 port does not use `$' as a logical line separator */
106
106
107
#define TC_IMPLICIT_LCOMM_ALIGNMENT(SIZE, P2VAR) (P2VAR) = 0
107
#define TC_IMPLICIT_LCOMM_ALIGNMENT(SIZE, P2VAR) (P2VAR) = 0
(-)binutils-2.15/gas/expr.c (+9 lines)
Lines 1900-1905 Link Here
1900
	;
1900
	;
1901
      if (is_name_ender (c))
1901
      if (is_name_ender (c))
1902
	c = *input_line_pointer++;
1902
	c = *input_line_pointer++;
1903
#ifdef TC_FORBID_DOLLAR_AT_END
1904
      /* This is for the Atmel AVR platforms. We want to allow $ in symbols
1905
	 but also as a line separator. Yucky. */
1906
      if (input_line_pointer[-2] == '$')
1907
	{
1908
	  input_line_pointer--;
1909
	  c = '$';
1910
	}
1911
#endif
1903
    }
1912
    }
1904
  *--input_line_pointer = 0;
1913
  *--input_line_pointer = 0;
1905
  return (c);
1914
  return (c);

Return to bug 104860