Shuffle ChangeLog entries into new files ChangeLog-1998,
[official-gcc.git] / gcc / testsuite / gcc.dg / pr18928-1.c
blob3a0107deefa4354b970008ed9d06722139acdb01
1 /* PR rtl-optimization/18928 */
2 /* { dg-do compile { target i?86-*-linux* } } */
3 /* { dg-options "-O2 -fPIC" } */
5 const char *toHex( unsigned short u )
7 static char hexVal[5];
8 int i = 3;
9 while ( i >= 0 ) {
10 unsigned short hex = (u & 0x000f);
11 if ( hex < 0x0a )
12 hexVal[i] = '0'+hex;
13 else
14 hexVal[i] = 'A'+(hex-0x0a);
15 i--;
17 hexVal[4] = '\0';
18 return hexVal;