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
472385a2
Commit
472385a2
authored
Jul 25, 2001
by
Richard Kenner
Committed by
Richard Kenner
Jul 25, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/alpha/alpha.c (print_operand, case '/'): Don't write '/'.
From-SVN: r44368
parent
02e3f1a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/ChangeLog
+2
-0
gcc/config/alpha/alpha.c
+1
-1
No files found.
gcc/ChangeLog
View file @
472385a2
Wed Jul 25 18:00:05 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* config/alpha/alpha.c (print_operand, case '/'): Don't write '/'.
* dbxout.c: Consistently use putc instead of fputc.
(print_wide_int): New function; call instead of direct fprintf.
(dbxout_type_index): Adjust calls of CHARS to be more accurate.
...
...
gcc/config/alpha/alpha.c
View file @
472385a2
...
...
@@ -3846,7 +3846,7 @@ print_operand (file, x, code)
const
char
*
round
=
get_round_mode_suffix
();
if
(
trap
||
round
)
fprintf
(
file
,
"
/
%s%s"
,
(
trap
?
trap
:
""
),
(
round
?
round
:
""
));
fprintf
(
file
,
"%s%s"
,
(
trap
?
trap
:
""
),
(
round
?
round
:
""
));
break
;
}
...
...
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