Changeset 1973 for binutils/trunk/opcodes/nds32-dis.c
- 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/opcodes/nds32-dis.c ¶
r970 r1973 1 1 /* NDS32-specific support for 32-bit ELF. 2 Copyright (C) 2012-201 4Free Software Foundation, Inc.2 Copyright (C) 2012-2016 Free Software Foundation, Inc. 3 3 Contributed by Andes Technology Corporation. 4 4 … … 156 156 int_value = __GF (insn, pfd->bitpos, pfd->bitsize) << pfd->shift; 157 157 158 if (int_value < 0)158 if (int_value < 10) 159 159 func (stream, "#%d", int_value); 160 160 else … … 270 270 func (stream, "%s", opc->opcode); 271 271 else 272 func (stream, "%s 272 func (stream, "%s\t", opc->opcode); 273 273 } 274 274 … … 281 281 case '&': 282 282 pstr_src++; 283 /* compare with operand_fields[].name. */283 /* Compare with operand_fields[].name. */ 284 284 pstr_tmp = &tmp_string[0]; 285 285 while (*pstr_src) … … 305 305 } 306 306 307 /* for insn-16. */307 /* For insn-16. */ 308 308 if (parse_mode & NDS32_PARSE_INSN16) 309 309 { … … 374 374 else if (pfd->hw_res == HW_INT) 375 375 { 376 if (int_value < 0)376 if (int_value < 10) 377 377 func (stream, "#%d", int_value); 378 378 else 379 379 func (stream, "#0x%x", int_value); 380 380 } 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 } 383 388 } 384 389 … … 492 497 else if (pfd->hw_res == HW_INT) 493 498 { 494 if (int_value < 0)499 if (int_value < 10) 495 500 func (stream, "#%d", int_value); 496 501 else 497 502 func (stream, "#0x%x", int_value); 498 503 } 499 else /* if(pfd->hw_res == HW_UINT). */504 else /* if (pfd->hw_res == HW_UINT). */ 500 505 { 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); 502 510 } 503 511 } … … 509 517 break; 510 518 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 511 542 default: 512 543 func (stream, "%c", *pstr_src++); 513 544 break; 514 } /* switch (*pstr_src). */ 515 516 } /* while (*pstr_src). */ 517 return; 545 } 546 } 518 547 } 519 548
Note:
See TracChangeset
for help on using the changeset viewer.