Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
7af1a035
Commit
7af1a035
authored
Jan 25, 2006
by
Ben Elliston
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dfp.c (dfp_byte_swap): Use uint32_t and not unsigned long.
From-SVN: r110184
parent
8827ffce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
gcc/ChangeLog
+8
-4
gcc/dfp.c
+4
-4
No files found.
gcc/ChangeLog
View file @
7af1a035
2006-01-25 Ben Elliston <bje@au.ibm.com>
* dfp.c (dfp_byte_swap): Use uint32_t and not unsigned long.
2006-01-24 Andrew Pinski <pinskia@physics.uc.edu>
2006-01-24 Andrew Pinski <pinskia@physics.uc.edu>
PR tree-opt/25860
PR tree-opt/25860
...
@@ -1634,10 +1638,10 @@
...
@@ -1634,10 +1638,10 @@
2006-01-16 Rafael vila de Espíndola <rafael.espindola@gmail.com>
2006-01-16 Rafael vila de Espíndola <rafael.espindola@gmail.com>
* cppspec.c (lang_specific_spec_functions):
remove
* cppspec.c (lang_specific_spec_functions):
Remove.
* gcc.c (lookup_spec_function):
use static_spec_functions directelly
* gcc.c (lookup_spec_function):
Use static_spec_functions directly.
* gcc.h (lang_specific_spec_functions):
remove
* gcc.h (lang_specific_spec_functions):
Remove.
* gccspec.c (lang_specific_spec_functions):
remove
* gccspec.c (lang_specific_spec_functions):
Remove.
2005-01-16 Paolo Bonzini <bonzini@gnu.org>
2005-01-16 Paolo Bonzini <bonzini@gnu.org>
...
...
gcc/dfp.c
View file @
7af1a035
...
@@ -36,13 +36,13 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
...
@@ -36,13 +36,13 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
#include "decimal32.h"
#include "decimal32.h"
#include "decNumber.h"
#include "decNumber.h"
static
u
nsigned
long
static
u
int32_t
dfp_byte_swap
(
u
nsigned
long
in
)
dfp_byte_swap
(
u
int32_t
in
)
{
{
u
nsigned
long
out
;
u
int32_t
out
=
0
;
unsigned
char
*
p
=
(
unsigned
char
*
)
&
out
;
unsigned
char
*
p
=
(
unsigned
char
*
)
&
out
;
union
{
union
{
u
nsigned
long
i
;
u
int32_t
i
;
unsigned
char
b
[
4
];
unsigned
char
b
[
4
];
}
u
;
}
u
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment