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
5ca2111f
Commit
5ca2111f
authored
Oct 13, 1998
by
Catherine Moore
Committed by
Catherine Moore
Oct 13, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extend meaning of 'c' operands to support .vtinherit.
From-SVN: r23038
parent
d5e4ff48
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/ChangeLog
+5
-0
gcc/config/v850/v850.c
+8
-1
No files found.
gcc/ChangeLog
View file @
5ca2111f
Tue
Oct
13
08
:
00
:
52
1998
Catherine
Moore
<
clm
@cygnus
.
com
>
*
config
/
v850
/
v850
.
c
(
print_operand
)
:
Extend
meaning
of
'c'
operands
to
support
.
vtinherit
.
Tue
Oct
13
21
:
38
:
35
1998
Michael
Hayes
<
m
.
hayes
@elec
.
canterbury
.
ac
.
nz
>
*
config
/
c4x
/
c4x
.
c
:
Convert
to
gen_rtx_FOO
.
...
...
gcc/config/v850/v850.c
View file @
5ca2111f
...
...
@@ -365,9 +365,16 @@ print_operand (file, x, code)
switch
(
code
)
{
case
'c'
:
/* We use 'c' operands with symbols for .vtinherit */
if
(
GET_CODE
(
x
)
==
SYMBOL_REF
)
{
output_addr_const
(
file
,
x
);
break
;
}
/* fall through */
case
'b'
:
case
'B'
:
case
'c'
:
case
'C'
:
switch
((
code
==
'B'
||
code
==
'C'
)
?
reverse_condition
(
GET_CODE
(
x
))
:
GET_CODE
(
x
))
...
...
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