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
7eda14e1
Commit
7eda14e1
authored
Jun 28, 2013
by
Marcus Shawcroft
Committed by
Marcus Shawcroft
Jun 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AArch64] Fix layout of aarch64_cannot_force_const_mem.
From-SVN: r200532
parent
c822f852
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/ChangeLog
+5
-0
gcc/config/aarch64/aarch64.c
+5
-2
No files found.
gcc/ChangeLog
View file @
7eda14e1
2013-06-28 Marcus Shawcroft <marcus.shawcroft@arm.com>
* config/aarch64/aarch64.c (aarch64_cannot_force_const_mem): Adjust
layout.
2013-06-28 Marcus Shawcroft <marcus.shawcroft@arm.com>
* config/aarch64/aarch64-protos.h (aarch64_symbol_type):
Update comment w.r.t SYMBOL_TINY_ABSOLUTE.
...
...
gcc/config/aarch64/aarch64.c
View file @
7eda14e1
/* Machine description for AArch64 architecture.
1
;
3201
;
0
c
/* Machine description for AArch64 architecture.
Copyright (C) 2009-2013 Free Software Foundation, Inc.
Contributed by ARM Ltd.
...
...
@@ -2687,12 +2688,14 @@ static bool
aarch64_cannot_force_const_mem
(
enum
machine_mode
mode
ATTRIBUTE_UNUSED
,
rtx
x
)
{
rtx
base
,
offset
;
if
(
GET_CODE
(
x
)
==
HIGH
)
return
true
;
split_const
(
x
,
&
base
,
&
offset
);
if
(
GET_CODE
(
base
)
==
SYMBOL_REF
||
GET_CODE
(
base
)
==
LABEL_REF
)
return
(
aarch64_classify_symbol
(
base
,
SYMBOL_CONTEXT_ADR
)
!=
SYMBOL_FORCE_TO_MEM
);
return
(
aarch64_classify_symbol
(
base
,
SYMBOL_CONTEXT_ADR
)
!=
SYMBOL_FORCE_TO_MEM
);
return
aarch64_tls_referenced_p
(
x
);
}
...
...
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