[BACK]Return to frv-ibld.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / gpl3 / binutils.old / dist / opcodes

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/external/gpl3/binutils.old/dist/opcodes/frv-ibld.c between version 1.4 and 1.5

version 1.4, 2016/12/14 21:49:06 version 1.5, 2018/04/14 15:49:46
Line 3 
Line 3 
    THIS FILE IS MACHINE GENERATED WITH CGEN: Cpu tools GENerator.     THIS FILE IS MACHINE GENERATED WITH CGEN: Cpu tools GENerator.
    - the resultant file is machine generated, cgen-ibld.in isn't     - the resultant file is machine generated, cgen-ibld.in isn't
   
    Copyright (C) 1996-2015 Free Software Foundation, Inc.     Copyright (C) 1996-2016 Free Software Foundation, Inc.
   
    This file is part of libopcodes.     This file is part of libopcodes.
   
Line 207  insert_normal (CGEN_CPU_DESC cd,
Line 207  insert_normal (CGEN_CPU_DESC cd,
 #if CGEN_INT_INSN_P  #if CGEN_INT_INSN_P
   
   {    {
     int shift;      int shift_within_word, shift_to_word, shift;
   
       /* How to shift the value to BIT0 of the word.  */
       shift_to_word = total_length - (word_offset + word_length);
   
       /* How to shift the value to the field within the word.  */
     if (CGEN_INSN_LSB0_P)      if (CGEN_INSN_LSB0_P)
       shift = (word_offset + start + 1) - length;        shift_within_word = start + 1 - length;
     else      else
       shift = total_length - (word_offset + start + length);        shift_within_word = word_length - start - length;
   
       /* The total SHIFT, then mask in the value.  */
       shift = shift_to_word + shift_within_word;
     *buffer = (*buffer & ~(mask << shift)) | ((value & mask) << shift);      *buffer = (*buffer & ~(mask << shift)) | ((value & mask) << shift);
   }    }
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb <webmaster@jp.NetBSD.org>