Commit 4b5f13f3 by Thiemo Seufer Committed by Thiemo Seufer

mips16e-extends.c (cksum8): Change return value to signed char.

	* gcc.target/mips/mips16e-extends.c (cksum8): Change return
	value to signed char.

From-SVN: r124157
parent c4da1827
2007-04-25 Thiemo Seufer <ths@mips.com>
* gcc.target/mips/mips16e-extends.c (cksum8): Change return
value to signed char.
2007-04-25 Uros Bizjak <ubizjak@gmail.com>
* gcc.target/i386/reload-1.c. Include <stdint.h>. Compile for all
......@@ -8,7 +8,7 @@ short cksum16 (unsigned long n)
return l;
}
char cksum8 (unsigned long n)
signed char cksum8 (unsigned long n)
{
unsigned long l;
l = validate (n, (n >> 8) + (n & 0xff));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment