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
c0954bcd
Commit
c0954bcd
authored
Aug 17, 1992
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(i960_address_cost): Don't abort for invalid addresses.
From-SVN: r1877
parent
2654605a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
gcc/config/i960/i960.c
+3
-1
No files found.
gcc/config/i960/i960.c
View file @
c0954bcd
...
...
@@ -493,7 +493,9 @@ i960_address_cost (x)
if
(
GET_CODE
(
base
)
==
PLUS
||
GET_CODE
(
base
)
==
MULT
)
return
6
;
abort
();
/* This is an invalid address. The return value doesn't matter, but
for convenience we make this more expensive than anything else. */
return
12
;
}
if
(
GET_CODE
(
x
)
==
MULT
)
return
6
;
...
...
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