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
3657dc3e
Commit
3657dc3e
authored
21 years ago
by
Paul Brook
Committed by
Paul Brook
21 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/arm/arm.c (arm_legitimate_index_p): Correct iwmmxt offsets.
From-SVN: r81189
parent
72fcb5d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/config/arm/arm.c
+3
-2
No files found.
gcc/ChangeLog
View file @
3657dc3e
2004-04-26 Paul Brook <paul@codesourcery.com>
* config/arm/arm.c (arm_legitimate_index_p): Correct iwmmxt offsets.
2004-04-26 Paul Brook <paul@codesourcery.com>
* config/arm/arm.c (arm_legitimate_index_p): Correct maverick offsets.
2004-04-25 Roger Sayle <roger@eyesopen.com>
...
...
This diff is collapsed.
Click to expand it.
gcc/config/arm/arm.c
View file @
3657dc3e
...
...
@@ -3104,8 +3104,9 @@ arm_legitimate_index_p (enum machine_mode mode, rtx index, RTX_CODE outer,
if
(
TARGET_REALLY_IWMMXT
&&
VALID_IWMMXT_REG_MODE
(
mode
))
return
(
code
==
CONST_INT
&&
INTVAL
(
index
)
<
256
&&
INTVAL
(
index
)
>
-
256
);
&&
INTVAL
(
index
)
<
1024
&&
INTVAL
(
index
)
>
-
1024
&&
(
INTVAL
(
index
)
&
3
)
==
0
);
if
(
GET_MODE_SIZE
(
mode
)
<=
4
&&
!
(
arm_arch4
...
...
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