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
fc209487
Commit
fc209487
authored
Feb 12, 2002
by
Graham Stott
Committed by
Graham Stott
Feb 12, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/pa/pa.h (GO_IF_LEGITIMATE_ADDRESS): Fix typos.
From-SVN: r49711
parent
adb60117
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/config/pa/pa.h
+2
-2
No files found.
gcc/ChangeLog
View file @
fc209487
2002-02-12 Graham Stott <grahams@redhat.com>
* config/hp/pa.h (GO_IF_LEGITIMATE_ADDRESS): Fix typos.
2002-02-12 Kazu Hirata <kazu@hxi.com>
2002-02-12 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (shift_alg_hi): Improve the 15-bit
* config/h8300/h8300.c (shift_alg_hi): Improve the 15-bit
...
...
gcc/config/pa/pa.h
View file @
fc209487
...
@@ -1286,12 +1286,12 @@ extern int may_call_alloca;
...
@@ -1286,12 +1286,12 @@ extern int may_call_alloca;
if (! TARGET_SOFT_FLOAT \
if (! TARGET_SOFT_FLOAT \
&& ! TARGET_DISABLE_INDEXING \
&& ! TARGET_DISABLE_INDEXING \
&& base \
&& base \
&& (
mode == SFmode || mode == DFmode)
\
&& (
(MODE) == SFmode || (MODE) == DFmode)
\
&& GET_CODE (index) == MULT \
&& GET_CODE (index) == MULT \
&& GET_CODE (XEXP (index, 0)) == REG \
&& GET_CODE (XEXP (index, 0)) == REG \
&& REG_OK_FOR_BASE_P (XEXP (index, 0)) \
&& REG_OK_FOR_BASE_P (XEXP (index, 0)) \
&& GET_CODE (XEXP (index, 1)) == CONST_INT \
&& GET_CODE (XEXP (index, 1)) == CONST_INT \
&& INTVAL (XEXP (index, 1)) == (
mode
== SFmode ? 4 : 8))\
&& INTVAL (XEXP (index, 1)) == (
(MODE)
== SFmode ? 4 : 8))\
goto ADDR; \
goto ADDR; \
} \
} \
else if (GET_CODE (X) == LO_SUM \
else if (GET_CODE (X) == LO_SUM \
...
...
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