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
7b028dba
Commit
7b028dba
authored
Apr 02, 1999
by
Nick Clifton
Committed by
Nick Clifton
Apr 02, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Display constants as both decimal and hex values
From-SVN: r26141
parent
1cc6c9bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+5
-0
gcc/print-rtl.c
+3
-0
No files found.
gcc/ChangeLog
View file @
7b028dba
Fri
Apr
2
17
:
23
:
58
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
print
-
rtl
.
c
(
print_rtx
)
:
Use
both
HOST_WIDE_INT_PRINT_DEC
and
HOST_WIDE_INT_PRINT_HEX
to
display
constants
.
1999
-
04
-
02
20
:
16
-
0500
Zack
Weinberg
<
zack
@rabi
.
columbia
.
edu
>
*
config
/
i386
/
i386
.
h
:
Document
all
TARGET_SWITCHES
or
add
...
...
gcc/print-rtl.c
View file @
7b028dba
...
...
@@ -231,6 +231,9 @@ print_rtx (in_rtx)
case
'w'
:
fprintf
(
outfile
,
" "
);
fprintf
(
outfile
,
HOST_WIDE_INT_PRINT_DEC
,
XWINT
(
in_rtx
,
i
));
fprintf
(
outfile
,
" ["
);
fprintf
(
outfile
,
HOST_WIDE_INT_PRINT_HEX
,
XWINT
(
in_rtx
,
i
));
fprintf
(
outfile
,
"]"
);
break
;
case
'i'
:
...
...
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