Initialise value to zero to avoid a compile time warning.
[deliverable/binutils-gdb.git] / opcodes / frv-asm.c
index 2632e8777788d632a1a61e92de0dfae4aa58d7ea..ad4d81f959d4b34f46c998aee34a4d621334f72d 100644 (file)
@@ -1229,14 +1229,14 @@ frv_cgen_parse_operand (cd, opindex, strp, fields)
       break;
     case FRV_OPERAND_LABEL16 :
       {
-        bfd_vma value;
+        bfd_vma value = 0;
         errmsg = cgen_parse_address (cd, strp, FRV_OPERAND_LABEL16, 0, NULL,  & value);
         fields->f_label16 = value;
       }
       break;
     case FRV_OPERAND_LABEL24 :
       {
-        bfd_vma value;
+        bfd_vma value = 0;
         errmsg = parse_call_label (cd, strp, FRV_OPERAND_LABEL24, 0, NULL,  & value);
         fields->f_label24 = value;
       }
This page took 0.024173 seconds and 4 git commands to generate.