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
38f90bec
Commit
38f90bec
authored
Nov 29, 2001
by
Nick Clifton
Committed by
Nick Clifton
Nov 29, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark _init and _fini as Thumb functions if compiled in thumb mode.
From-SVN: r47441
parent
243ebca0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
gcc/ChangeLog
+6
-0
gcc/config/arm/crti.asm
+6
-0
No files found.
gcc/ChangeLog
View file @
38f90bec
2001
-
11
-
29
Nick
Clifton
<
nickc
@cambridge
.
redhat
.
com
>
*
config
/
arm
/
crti
.
asm
(
_init
)
:
Add
.
thumb_func
if
compiled
with
-
mthumb
.
(
_fini
)
:
Add
.
thumb_func
if
compiled
with
-
mthumb
.
2001
-
11
-
28
Eric
Christopher
<
echristo
@redhat
.
com
>
2001
-
11
-
28
Eric
Christopher
<
echristo
@redhat
.
com
>
*
config
/
mips
/
mips
.
c
(
override_options
)
:
Fix
thinko
in
mips_tune
*
config
/
mips
/
mips
.
c
(
override_options
)
:
Fix
thinko
in
mips_tune
...
...
gcc/config/arm/crti.asm
View file @
38f90bec
...
@@ -57,6 +57,9 @@
...
@@ -57,6 +57,9 @@
.
section
".init"
.
section
".init"
.
align
2
.
align
2
.
global
_init
.
global
_init
#
ifdef
__thumb__
.
thumb_func
#
endif
_init
:
_init
:
FUNC_START
FUNC_START
...
@@ -64,6 +67,9 @@ _init:
...
@@ -64,6 +67,9 @@ _init:
.
section
".fini"
.
section
".fini"
.
align
2
.
align
2
.
global
_fini
.
global
_fini
#
ifdef
__thumb__
.
thumb_func
#
endif
_fini
:
_fini
:
FUNC_START
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