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
fba5243d
Commit
fba5243d
authored
Sep 02, 2004
by
Paul Brook
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/arm/bpabi.c (__aeabi_ul2d, __aeabi_ul2f): Remove.
From-SVN: r86986
parent
24112ed0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
34 deletions
+0
-34
gcc/config/arm/bpabi.c
+0
-34
No files found.
gcc/config/arm/bpabi.c
View file @
fba5243d
...
@@ -27,9 +27,6 @@
...
@@ -27,9 +27,6 @@
the Free Software Foundation, 59 Temple Place - Suite 330,
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
Boston, MA 02111-1307, USA. */
#define VISIBLE __attribute__((visibility("default")))
extern
VISIBLE
double
__aeabi_ul2d
(
unsigned
long
long
);
extern
VISIBLE
float
__aeabi_ul2f
(
unsigned
long
long
);
extern
long
long
__divdi3
(
long
long
,
long
long
);
extern
long
long
__divdi3
(
long
long
,
long
long
);
extern
unsigned
long
long
__udivdi3
(
unsigned
long
long
,
extern
unsigned
long
long
__udivdi3
(
unsigned
long
long
,
unsigned
long
long
);
unsigned
long
long
);
...
@@ -38,37 +35,6 @@ extern unsigned long long __gnu_uldivmod_helper (unsigned long long,
...
@@ -38,37 +35,6 @@ extern unsigned long long __gnu_uldivmod_helper (unsigned long long,
unsigned
long
long
,
unsigned
long
long
,
unsigned
long
long
*
);
unsigned
long
long
*
);
/* These functions are based on __floatdidf and __floatdisf, but
convert unsigned DImode values instead of signed DImode
values. */
#define WORD_SIZE (sizeof (int) * 8)
#define HIGH_HALFWORD_COEFF (((unsigned long long) 1) << (WORD_SIZE / 2))
#define HIGH_WORD_COEFF (((unsigned long long) 1) << WORD_SIZE)
double
__aeabi_ul2d
(
unsigned
long
long
u
)
{
double
d
=
(
unsigned
)
(
u
>>
WORD_SIZE
);
d
*=
HIGH_HALFWORD_COEFF
;
d
*=
HIGH_HALFWORD_COEFF
;
d
+=
(
unsigned
)
(
u
&
(
HIGH_WORD_COEFF
-
1
));
return
d
;
}
float
__aeabi_ul2f
(
unsigned
long
long
u
)
{
/* Do the calculation in DFmode so that we don't lose any of the
precision of the high word while multiplying it. */
double
f
=
(
unsigned
)
(
u
>>
WORD_SIZE
);
f
*=
HIGH_HALFWORD_COEFF
;
f
*=
HIGH_HALFWORD_COEFF
;
f
+=
(
unsigned
)
(
u
&
(
HIGH_WORD_COEFF
-
1
));
return
(
float
)
f
;
}
long
long
long
long
__gnu_ldivmod_helper
(
long
long
a
,
__gnu_ldivmod_helper
(
long
long
a
,
...
...
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