Commit 8a46b94f by Ben Elliston Committed by Ben Elliston

decLibrary.c (__dec_byte_swap): Use uint32_t for argument and return types.

	* decLibrary.c (__dec_byte_swap): Use uint32_t for argument and
	return types.

From-SVN: r110638
parent a4a9df5f
2006-02-06 Ben Elliston <bje@au.ibm.com>
* decLibrary.c (__dec_byte_swap): Use uint32_t for argument and
return types.
2006-01-03 Roger Sayle <roger@eyesopen.com>
Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
......
/* Temporary library support for decimal floating point.
Copyright (C) 2005 Free Software Foundation, Inc.
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GCC.
......@@ -81,13 +81,13 @@ __dfp_raise (int exception __attribute__ ((unused)))
raise (SIGFPE);
}
unsigned long
__dec_byte_swap (unsigned long in)
uint32_t
__dec_byte_swap (uint32_t in)
{
unsigned long out;
uint32_t out = 0;
unsigned char *p = (unsigned char *) &out;
union {
unsigned long i;
uint32_t i;
unsigned char b[4];
} u;
......
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