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
2fed503d
Commit
2fed503d
authored
Jul 17, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Jul 17, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mn10300.c (MODES_TIEABLE_P): Fix typo.
From-SVN: r21249
parent
c5a6fc45
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/config/mn10300/mn10300.h
+1
-1
No files found.
gcc/ChangeLog
View file @
2fed503d
Fri Jul 17 11:48:55 1998 Jeffrey A Law (law@cygnus.com)
* mn10300.c (MODES_TIEABLE_P): Fix typo.
Fri Jul 17 03:26:12 1998 Rihcard Earnshaw (rearnsha@arm.com)
* tree.c (valid_machine_attribute): Only create a new type variant if
...
...
gcc/config/mn10300/mn10300.h
View file @
2fed503d
...
...
@@ -182,7 +182,7 @@ extern struct rtx_def *zero_areg;
If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
for any hard reg, then this must be 0 for correct output. */
#define MODES_TIEABLE_P(MODE1, MODE2) \
(MODE1 == MODE2 ||
GET_MODE_SIZE (MODE1) <= 4 && GET_MODE_SIZE (MODE2) <= 4
)
(MODE1 == MODE2 ||
(GET_MODE_SIZE (MODE1) <= 4 && GET_MODE_SIZE (MODE2) <= 4)
)
/* 4 data, and effectively 3 address registers is small as far as I'm
concerned. */
...
...
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