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
7be2640d
Commit
7be2640d
authored
Oct 06, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(asm_fprintf): Add cases for 'w' and 'l'.
From-SVN: r5653
parent
19d76e60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
gcc/final.c
+21
-0
No files found.
gcc/final.c
View file @
7be2640d
...
...
@@ -2675,6 +2675,27 @@ asm_fprintf (va_alist)
fprintf
(
file
,
buf
,
va_arg
(
argptr
,
int
));
break
;
case
'w'
:
/* This is a prefix to the 'd', 'i', 'u', 'x', 'p', and 'X' cases,
but we do not check for those cases. It means that the value
is a HOST_WIDE_INT, which may be either `int' or `long'. */
#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
*
q
++
=
'l'
;
#endif
*
q
++
=
*
p
++
;
*
q
=
0
;
fprintf
(
file
,
buf
,
va_arg
(
argptr
,
HOST_WIDE_INT
));
break
;
case
'l'
:
*
q
++
=
c
;
*
q
++
=
*
p
++
;
*
q
=
0
;
fprintf
(
file
,
buf
,
va_arg
(
argptr
,
long
));
break
;
case
'e'
:
case
'f'
:
case
'g'
:
...
...
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