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
a3458d22
Commit
a3458d22
authored
Nov 27, 2013
by
Uros Bizjak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
op-4.h: Update from glibc.
* soft-fp/op-4.h: Update from glibc. From-SVN: r205462
parent
35af99b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
libgcc/ChangeLog
+5
-1
libgcc/soft-fp/op-4.h
+4
-4
No files found.
libgcc/ChangeLog
View file @
a3458d22
2013-11-27 Uros Bizjak <ubizjak@gmail.com>
* soft-fp/op-4.h: Update from glibc.
2013-11-27 Kugan Vivekanandarajah <kuganv@linaro.org>
2013-11-27 Kugan Vivekanandarajah <kuganv@linaro.org>
* libgcc2.c (__udivmoddi4): Define new implementation when
* libgcc2.c (__udivmoddi4): Define new implementation when
...
@@ -24,7 +28,7 @@
...
@@ -24,7 +28,7 @@
2013-11-22 Yuri Rumyantsev <ysrumyan@gmail.com>
2013-11-22 Yuri Rumyantsev <ysrumyan@gmail.com>
* config/i386/cpuinfo.c (get_intel_cpu): Add Silvermont cases.
* config/i386/cpuinfo.c (get_intel_cpu): Add Silvermont cases.
2013-11-18 Jan Hubicka <jh@suse.cz>
2013-11-18 Jan Hubicka <jh@suse.cz>
...
...
libgcc/soft-fp/op-4.h
View file @
a3458d22
...
@@ -709,7 +709,7 @@
...
@@ -709,7 +709,7 @@
else if (rsize <= 2*_FP_W_TYPE_SIZE) \
else if (rsize <= 2*_FP_W_TYPE_SIZE) \
{ \
{ \
r = X##_f[1]; \
r = X##_f[1]; \
r
<<= _FP_W_TYPE_SIZE;
\
r
= (rsize <= _FP_W_TYPE_SIZE ? 0 : r << _FP_W_TYPE_SIZE);
\
r += X##_f[0]; \
r += X##_f[0]; \
} \
} \
else \
else \
...
@@ -717,11 +717,11 @@
...
@@ -717,11 +717,11 @@
/* I'm feeling lazy so we deal with int == 3words (implausible)*/
\
/* I'm feeling lazy so we deal with int == 3words (implausible)*/
\
/* and int == 4words as a single case. */
\
/* and int == 4words as a single case. */
\
r = X##_f[3]; \
r = X##_f[3]; \
r
<<= _FP_W_TYPE_SIZE;
\
r
= (rsize <= _FP_W_TYPE_SIZE ? 0 : r << _FP_W_TYPE_SIZE);
\
r += X##_f[2]; \
r += X##_f[2]; \
r
<<= _FP_W_TYPE_SIZE;
\
r
= (rsize <= _FP_W_TYPE_SIZE ? 0 : r << _FP_W_TYPE_SIZE);
\
r += X##_f[1]; \
r += X##_f[1]; \
r
<<= _FP_W_TYPE_SIZE;
\
r
= (rsize <= _FP_W_TYPE_SIZE ? 0 : r << _FP_W_TYPE_SIZE);
\
r += X##_f[0]; \
r += X##_f[0]; \
} \
} \
} \
} \
...
...
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