OpenCores
URL https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk

Subversion Repositories open8_urisc

[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [binutils/] [elfcomm.c] - Diff between revs 15 and 166

Show entire file | Details | Blame | View Log

Rev 15 Rev 166
Line 236... Line 236...
    default:
    default:
      abort ();
      abort ();
    }
    }
}
}
 
 
 
/* Return the high-order 32-bits and the low-order 32-bits
 
   of an 8-byte value separately.  */
 
 
 
void
 
byte_get_64 (unsigned char *field, elf_vma *high, elf_vma *low)
 
{
 
  if (byte_get == byte_get_big_endian)
 
    {
 
      *high = byte_get_big_endian (field, 4);
 
      *low = byte_get_big_endian (field + 4, 4);
 
    }
 
  else
 
    {
 
      *high = byte_get_little_endian (field + 4, 4);
 
      *low = byte_get_little_endian (field, 4);
 
    }
 
  return;
 
}
 
 
/* Return the path name for a proxy entry in a thin archive, adjusted
/* Return the path name for a proxy entry in a thin archive, adjusted
   relative to the path name of the thin archive itself if necessary.
   relative to the path name of the thin archive itself if necessary.
   Always returns a pointer to malloc'ed memory.  */
   Always returns a pointer to malloc'ed memory.  */
 
 
char *
char *

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.