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
d8088c6f
Commit
d8088c6f
authored
Jul 30, 2002
by
Bernd Schmidt
Committed by
Bernd Schmidt
Jul 30, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New target macro DECLARE_LIBRARY_RENAMES
From-SVN: r55889
parent
c01d477a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
1 deletions
+19
-1
gcc/ChangeLog
+4
-1
gcc/config/fp-bit.c
+4
-0
gcc/doc/tm.texi
+7
-0
gcc/libgcc2.c
+4
-0
No files found.
gcc/ChangeLog
View file @
d8088c6f
...
...
@@ -25,7 +25,10 @@
Bail out early if false_expr is NULL and we'd crash due to this.
* genemit.c (gen_expand): Recognize return insns even if the return
appears in a parallel.
* libgcc2.c: Expand macro DECLARE_LIBRARY_RENAMES if it is defined.
* config/fp-bit.c: Likewise.
* doc/tm.texi: Document it.
2002-07-30 David Edelsohn <edelsohn@gnu.org>
Zack Weinberg <zack@codesourcery.com>
...
...
gcc/config/fp-bit.c
View file @
d8088c6f
...
...
@@ -74,6 +74,10 @@ Boston, MA 02111-1307, USA. */
are referenced from within libc, since libgcc goes before and after the
system library. */
#ifdef DECLARE_LIBRARY_RENAMES
DECLARE_LIBRARY_RENAMES
#endif
#ifdef EXTENDED_FLOAT_STUBS
__truncxfsf2
(){
abort
();
}
__extendsfxf2
(){
abort
();
}
...
...
gcc/doc/tm.texi
View file @
d8088c6f
...
...
@@ -4598,6 +4598,13 @@ remainder in division of one unsigned full-word by another. If you do
not
define
this
macro
,
the
default
name
is
used
,
which
is
@code{
__umoddi3
}
,
a
function
defined
in
@file{
libgcc
.
a
}
.
@findex
DECLARE_LIBRARY_RENAMES
@item
DECLARE_LIBRARY_RENAMES
This
macro
,
if
defined
,
should
expand
to
a
piece
of
C
code
that
will
get
expanded
when
compiling
functions
for
libgcc
.
a
.
It
can
be
used
to
provide
alternate
names
for
gcc
'
s
internal
library
functions
if
there
are
ABI
-
mandated
names
that
the
compiler
should
provide
.
@findex
INIT_TARGET_OPTABS
@item
INIT_TARGET_OPTABS
Define
this
macro
as
a
C
statement
that
declares
additional
library
...
...
gcc/libgcc2.c
View file @
d8088c6f
...
...
@@ -43,6 +43,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#include "libgcc2.h"
#ifdef DECLARE_LIBRARY_RENAMES
DECLARE_LIBRARY_RENAMES
#endif
#if defined (L_negdi2)
DWtype
__negdi2
(
DWtype
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