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
e367a231
Commit
e367a231
authored
Oct 01, 2004
by
Paul Brook
Committed by
Paul Brook
Oct 01, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/arm/crti.asm: Give _init and _fini function type.
From-SVN: r88405
parent
47bcd07d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/ChangeLog
+5
-1
gcc/config/arm/crti.asm
+8
-0
No files found.
gcc/ChangeLog
View file @
e367a231
2004
-
10
-
01
Paul
Brook
<
paul
@
codesourcery
.
com
>
*
config
/
arm
/
crti
.
asm
:
Give
_init
and
_fini
function
type
.
2004
-
10
-
01
Zdenek
Dvorak
<
dvorakz
@
suse
.
cz
>
*
common
.
opt
(
ftree
-
loop
-
ivcanon
):
Enable
by
default
.
...
...
@@ -6,7 +10,7 @@
(
canonicalize_induction_variables
,
tree_unroll_loops_completely
):
Reset
scev
info
.
2004
-
01
-
01
Paul
Brook
<
paul
@
codesourcery
.
com
>
2004
-
10
-
01
Paul
Brook
<
paul
@
codesourcery
.
com
>
*
config
/
arm
/
arm
.
c
(
thumb_compute_saved_rag_mask
):
Or
with
bitmask
,
not
register
number
.
...
...
gcc/config/arm/crti.asm
View file @
e367a231
...
...
@@ -35,6 +35,12 @@
#
.
init
sections
.
Users
may
put
any
desired
instructions
in
those
#
sections
.
#
ifdef
__ELF__
#
define
TYPE
(
x
)
.
type
x
,
function
#
else
#
define
TYPE
(
x
)
#
endif
#
Note
-
this
macro
is
complemented
by
the
FUNC_END
macro
#
in
crtn
.
asm
.
If
you
change
this
macro
you
must
also
change
#
that
macro
match
.
...
...
@@ -60,6 +66,7 @@
#
ifdef
__thumb__
.
thumb_func
#
endif
TYPE
(
_init
)
_init
:
FUNC_START
...
...
@@ -70,6 +77,7 @@ _init:
#
ifdef
__thumb__
.
thumb_func
#
endif
TYPE
(
_fini
)
_fini
:
FUNC_START
...
...
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