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
640e1822
Commit
640e1822
authored
25 years ago
by
Mark Mitchell
Committed by
Mark Mitchell
25 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dsp16xx.c (override_options): Fix typos in GC root registration.
From-SVN: r29437
parent
e68eda91
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
22 deletions
+25
-22
gcc/ChangeLog
+4
-0
gcc/config/dsp16xx/dsp16xx.c
+21
-22
No files found.
gcc/ChangeLog
View file @
640e1822
Wed
Sep
15
09
:
59
:
59
1999
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
dsp16xx
.
c
(
override_options
)
:
Fix
typos
in
GC
root
registration
.
Wed
Sep
15
15
:
23
:
28
1999
Philip
Blundell
<
pb
@nexus
.
co
.
uk
>
*
config
/
arm
/
linux
-
elf
.
h
(
MAKE_DECL_ONE_ONLY
)
:
Copy
definition
...
...
This diff is collapsed.
Click to expand it.
gcc/config/dsp16xx/dsp16xx.c
View file @
640e1822
...
...
@@ -1532,28 +1532,27 @@ override_options ()
}
/* Mark our global variables for GC. */
ggc_add_rtx
(
&
dsp16xx_addhf3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_addhf3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_subhf3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_mulhf3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_divhf3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_cmphf3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_fixhfhi2_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_floathihf2_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_neghf2_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_mulhi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_udivqi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_udivhi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_divqi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_divhi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_modqi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_modhi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_umodqi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_umodhi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_ashrhi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_ashlhi3_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_ucmphi2_libcall
,
1
);
ggc_add_rtx
(
dsp16xx_lshrhi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_addhf3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_subhf3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_mulhf3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_divhf3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_cmphf3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_fixhfhi2_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_floathihf2_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_neghf2_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_mulhi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_udivqi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_udivhi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_divqi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_divhi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_modqi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_modhi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_umodqi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_umodhi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_ashrhi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_ashlhi3_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_ucmphi2_libcall
,
1
);
ggc_add_rtx_root
(
&
dsp16xx_lshrhi3_libcall
,
1
);
}
...
...
This diff is collapsed.
Click to expand it.
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