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
d4b048ef
Commit
d4b048ef
authored
Oct 28, 1992
by
Tom Wood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print_operand): When AS_BUG_FLDCR is defined, use alternate
fldcr form. From-SVN: r2635
parent
1e482b2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
gcc/config/m88k/m88k.c
+7
-2
No files found.
gcc/config/m88k/m88k.c
View file @
d4b048ef
...
...
@@ -47,7 +47,7 @@ extern char *ctime ();
extern
int
flag_traditional
;
extern
FILE
*
asm_out_file
;
static
char
out_sccs_id
[]
=
"@(#)m88k.c 2.2.1
3.6 10/21/92 12:41:48
"
;
static
char
out_sccs_id
[]
=
"@(#)m88k.c 2.2.1
4.3 10/28/92 15:20:54
"
;
static
char
tm_sccs_id
[]
=
TM_SCCS_ID
;
char
*
m88k_pound_sign
=
""
;
/* Either # for SVR4 or empty for SVR3 */
...
...
@@ -2667,7 +2667,12 @@ print_operand (file, x, code)
&&
!
(
m88k_volatile_code
==
'v'
&&
GET_CODE
(
XEXP
(
x
,
0
))
==
LO_SUM
&&
rtx_equal_p
(
XEXP
(
XEXP
(
x
,
0
),
1
),
last_addr
)))
fprintf
(
file
,
"fldcr
\t
%s,%sfcr63
\n\t
"
,
fprintf
(
file
,
#ifdef AS_BUG_FLDCR
"fldcr
\t
%s,%scr63
\n\t
"
,
#else
"fldcr
\t
%s,%sfcr63
\n\t
"
,
#endif
reg_names
[
0
],
m88k_pound_sign
);
m88k_volatile_code
=
code
;
last_addr
=
(
GET_CODE
(
XEXP
(
x
,
0
))
==
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