* nds32-asm.c (parse_operand): Fix out-of-range integer constant.
authorMaciej W. Rozycki <macro@codesourcery.com>
Mon, 6 Jan 2014 02:40:48 +0000 (10:40 +0800)
committerKuan-Lin Chen <kuanlinchentw@gmail.com>
Mon, 6 Jan 2014 02:44:23 +0000 (10:44 +0800)
opcodes/ChangeLog
opcodes/nds32-asm.c

index 8a9d7e6c1d448e259fec3bf7f49af4d997ab5648..fbb86a3d2a90c4c039811e83cea280081ec656b5 100644 (file)
@@ -1,3 +1,7 @@
+2014-01-03  Maciej W. Rozycki  <macro@codesourcery.com>
+
+       * nds32-asm.c (parse_operand): Fix out-of-range integer constant.
+
 2013-12-17  Kuan-Lin Chen  <kuanlinchentw@gmail.com>
 
        * nds32-dis.c (sr_map): Add system register table for disassembling.
index d7681bfe5166797f15c4ecb15c6dedce25df54a0..62512dd84a729ef7ad989b51d28f83f32e3d5197 100644 (file)
@@ -1370,7 +1370,7 @@ parse_operand (nds32_asm_desc_t *pdesc, nds32_asm_insn_t *pinsn,
   hashval_t hash;
   const field_t *fld = &LEX_GET_FIELD (syn);
   keyword_t *k;
-  int64_t value = 0x100000000; /* Big enough to overflow.  */
+  int64_t value;
   int r;
   uint64_t modifier = 0;
 
This page took 0.028512 seconds and 4 git commands to generate.