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/opcodes/nds32-dis.c

    r970 r1973  
    11/* NDS32-specific support for 32-bit ELF.
    2    Copyright (C) 2012-2014 Free Software Foundation, Inc.
     2   Copyright (C) 2012-2016 Free Software Foundation, Inc.
    33   Contributed by Andes Technology Corporation.
    44
     
    156156        int_value = __GF (insn, pfd->bitpos, pfd->bitsize) << pfd->shift;
    157157
    158       if (int_value < 0)
     158      if (int_value < 10)
    159159        func (stream, "#%d", int_value);
    160160      else
     
    270270        func (stream, "%s", opc->opcode);
    271271      else
    272         func (stream, "%s ", opc->opcode);
     272        func (stream, "%s\t", opc->opcode);
    273273    }
    274274
     
    281281        case '&':
    282282          pstr_src++;
    283           /* compare with operand_fields[].name.  */
     283          /* Compare with operand_fields[].name.  */
    284284          pstr_tmp = &tmp_string[0];
    285285          while (*pstr_src)
     
    305305            }
    306306
    307           /* for insn-16.  */
     307          /* For insn-16.  */
    308308          if (parse_mode & NDS32_PARSE_INSN16)
    309309            {
     
    374374                  else if (pfd->hw_res == HW_INT)
    375375                    {
    376                       if (int_value < 0)
     376                      if (int_value < 10)
    377377                        func (stream, "#%d", int_value);
    378378                      else
    379379                        func (stream, "#0x%x", int_value);
    380380                    }
    381                   else          /* if(pfd->hw_res == HW_UINT).  */
    382                     func (stream, "#0x%x", int_value);
     381                  else /* if (pfd->hw_res == HW_UINT).  */
     382                    {
     383                      if (int_value < 10)
     384                        func (stream, "#%u", int_value);
     385                      else
     386                        func (stream, "#0x%x", int_value);
     387                    }
    383388                }
    384389
     
    492497              else if (pfd->hw_res == HW_INT)
    493498                {
    494                   if (int_value < 0)
     499                  if (int_value < 10)
    495500                    func (stream, "#%d", int_value);
    496501                  else
    497502                    func (stream, "#0x%x", int_value);
    498503                }
    499               else              /* if(pfd->hw_res == HW_UINT).  */
     504              else /* if (pfd->hw_res == HW_UINT).  */
    500505                {
    501                   func (stream, "#0x%x", int_value);
     506                  if (int_value < 10)
     507                    func (stream, "#%u", int_value);
     508                  else
     509                    func (stream, "#0x%x", int_value);
    502510                }
    503511            }
     
    509517          break;
    510518
     519        case ',':
     520          func (stream, ", ");
     521          pstr_src++;
     522          break;
     523         
     524        case '+':
     525          func (stream, " + ");
     526          pstr_src++;
     527          break;
     528         
     529        case '<':
     530          if (pstr_src[1] == '<')
     531            {
     532              func (stream, " << ");
     533              pstr_src += 2;
     534            }
     535          else
     536            {
     537              func (stream, " <");
     538              pstr_src++;
     539            }
     540          break;
     541         
    511542        default:
    512543          func (stream, "%c", *pstr_src++);
    513544          break;
    514         }                       /* switch (*pstr_src).  */
    515 
    516     }                           /* while (*pstr_src).  */
    517   return;
     545        }
     546    }
    518547}
    519548
Note: See TracChangeset for help on using the changeset viewer.