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
38e6c9a6
Commit
38e6c9a6
authored
May 31, 2013
by
Marcus Shawcroft
Committed by
Marcus Shawcroft
May 31, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AArch64] -mcmodel=tiny -fPIC use tiny absolute for non binds local.
From-SVN: r199544
parent
6a8b3087
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+5
-0
gcc/config/aarch64/aarch64.c
+4
-0
No files found.
gcc/ChangeLog
View file @
38e6c9a6
2013-05-31 Marcus Shawcroft <marcus.shawcroft@arm.com>
* config/aarch64/aarch64.c (aarch64_classify_symbol):
Use SYMBOL_TINY_ABSOLUTE for AARCH64_CMODEL_TINY_PIC.
2013-05-31 Tobias Burnus <burnus@net-b.de>
PR middle-end/57073
...
...
gcc/config/aarch64/aarch64.c
View file @
38e6c9a6
...
...
@@ -5068,6 +5068,10 @@ aarch64_classify_symbol (rtx x,
return
SYMBOL_SMALL_ABSOLUTE
;
case
AARCH64_CMODEL_TINY_PIC
:
if
(
!
aarch64_symbol_binds_local_p
(
x
))
return
SYMBOL_SMALL_GOT
;
return
SYMBOL_TINY_ABSOLUTE
;
case
AARCH64_CMODEL_SMALL_PIC
:
if
(
!
aarch64_symbol_binds_local_p
(
x
))
return
SYMBOL_SMALL_GOT
;
...
...
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