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
01c19d47
Commit
01c19d47
authored
Apr 19, 2005
by
Paul Brook
Committed by
Julian Brown
Apr 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/arm/arm.c (arm_init_libfuncs): Clear mod optabs.
From-SVN: r98417
parent
8766be86
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
gcc/ChangeLog
+4
-0
gcc/config/arm/arm.c
+7
-0
No files found.
gcc/ChangeLog
View file @
01c19d47
2005-04-19 Paul Brook <paul@codesourcery.com>
* config/arm/arm.c (arm_init_libfuncs): Clear mod optabs.
2005-04-19 Andrew Haley <aph@redhat.com>
PR java/21022
...
...
gcc/config/arm/arm.c
View file @
01c19d47
...
...
@@ -755,6 +755,13 @@ arm_init_libfuncs (void)
set_optab_libfunc
(
udiv_optab
,
DImode
,
"__aeabi_uldivmod"
);
set_optab_libfunc
(
sdiv_optab
,
SImode
,
"__aeabi_idivmod"
);
set_optab_libfunc
(
udiv_optab
,
SImode
,
"__aeabi_uidivmod"
);
/* We don't have mod libcalls. Fortunately gcc knows how to use the
divmod libcalls instead. */
set_optab_libfunc
(
smod_optab
,
DImode
,
NULL
);
set_optab_libfunc
(
umod_optab
,
DImode
,
NULL
);
set_optab_libfunc
(
smod_optab
,
SImode
,
NULL
);
set_optab_libfunc
(
umod_optab
,
SImode
,
NULL
);
}
/* Fix up any incompatible options that the user has specified.
...
...
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