Fix typo in gas_cgen_parse_operand()

Nick Clifton nickc@redhat.com
Mon Mar 21 19:30:00 GMT 2005


Hi Guys,

  When I patched gas_cgen_parse_operand() to prevent a compile time
  warning I forgot one place opinfo is used.  So I am applying the
  patch below to fix up this mistake.

Cheers
    Nick
    
gas/ChangeLog
2005-03-21  Nick Clifton  <nickc@redhat.com>

	* cgen.c (gas_cgen_parse_operand): Fix typo instroduced by
	previous delta.

Index: cgen.c
===================================================================
RCS file: /cvs/src/src/gas/cgen.c,v
retrieving revision 1.27
diff -c -3 -p -r1.27 cgen.c
*** cgen.c	16 Mar 2005 18:09:04 -0000	1.27
--- cgen.c	21 Mar 2005 15:27:58 -0000
*************** gas_cgen_parse_operand (cd, want, strP, 
*** 359,365 ****
    input_line_pointer = hold;
  
  #ifdef TC_CGEN_PARSE_FIX_EXP
!   opinfo = TC_CGEN_PARSE_FIX_EXP (opinfo_1, & exp);
  #endif 
  
    /* FIXME: Need to check `want'.  */
--- 359,365 ----
    input_line_pointer = hold;
  
  #ifdef TC_CGEN_PARSE_FIX_EXP
!   opinfo_1 = TC_CGEN_PARSE_FIX_EXP (opinfo_1, & exp);
  #endif 
  
    /* FIXME: Need to check `want'.  */



More information about the Binutils mailing list