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
2872409d
Commit
2872409d
authored
Apr 15, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Apr 15, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.h (LEGITIMIZE_RELOAD_ADDRESS): Do nothing if not optimizing.
From-SVN: r19225
parent
3a35dcc4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/config/pa/pa.h
+2
-1
No files found.
gcc/ChangeLog
View file @
2872409d
Wed Apr 15 12:37:10 1998 Jeffrey A Law (law@cygnus.com)
* pa.h (LEGITIMIZE_RELOAD_ADDRESS): Do nothing if not optimizing.
Wed Apr 15 12:10:18 1998 Michael Meissner <meissner@cygnus.com>
Wed Apr 15 12:10:18 1998 Michael Meissner <meissner@cygnus.com>
* Makefile.in (gen{config,flags,codes,emit}): Link in host print-rtl.o.
* Makefile.in (gen{config,flags,codes,emit}): Link in host print-rtl.o.
...
...
gcc/config/pa/pa.h
View file @
2872409d
...
@@ -1641,7 +1641,8 @@ do { \
...
@@ -1641,7 +1641,8 @@ do { \
int offset, newoffset, mask; \
int offset, newoffset, mask; \
mask = GET_MODE_CLASS (MODE) == MODE_FLOAT ? 0x1f : 0x3fff; \
mask = GET_MODE_CLASS (MODE) == MODE_FLOAT ? 0x1f : 0x3fff; \
\
\
if (GET_CODE (AD) == PLUS \
if (optimize \
&& GET_CODE (AD) == PLUS \
&& GET_CODE (XEXP (AD, 0)) == REG \
&& GET_CODE (XEXP (AD, 0)) == REG \
&& GET_CODE (XEXP (AD, 1)) == CONST_INT) \
&& GET_CODE (XEXP (AD, 1)) == CONST_INT) \
{ \
{ \
...
...
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