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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [pr18928-1.c] - Diff between revs 298 and 338

Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 338
/* PR rtl-optimization/18928 */
/* PR rtl-optimization/18928 */
/* { dg-do compile { target fpic } } */
/* { dg-do compile { target fpic } } */
/* { dg-options "-O2 -fPIC" } */
/* { dg-options "-O2 -fPIC" } */
 
 
const char *toHex( unsigned short u )
const char *toHex( unsigned short u )
{
{
  static char hexVal[5];
  static char hexVal[5];
  int i = 3;
  int i = 3;
  while ( i >= 0 ) {
  while ( i >= 0 ) {
    unsigned short hex = (u & 0x000f);
    unsigned short hex = (u & 0x000f);
    if ( hex < 0x0a )
    if ( hex < 0x0a )
      hexVal[i] = '0'+hex;
      hexVal[i] = '0'+hex;
    else
    else
      hexVal[i] = 'A'+(hex-0x0a);
      hexVal[i] = 'A'+(hex-0x0a);
    i--;
    i--;
  }
  }
  hexVal[4] = '\0';
  hexVal[4] = '\0';
  return hexVal;
  return hexVal;
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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