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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pr18928-1.c] - Rev 149

Go to most recent revision | Compare with Previous | Blame | View Log

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

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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