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
36ba9cb8
Commit
36ba9cb8
authored
Apr 08, 1999
by
Nick Clifton
Committed by
Nick Clifton
Apr 08, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undo previous delta - always display large constants in decimal.
From-SVN: r26293
parent
09608fa2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
9 deletions
+7
-9
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.c
+2
-9
No files found.
gcc/ChangeLog
View file @
36ba9cb8
Thu
Apr
8
09
:
37
:
40
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
config
/
arm
/
arm
.
c
(
arm_print_operand
)
:
Undo
previous
change
-
always
print
large
constants
in
decimal
.
Thu
Apr
8
10
:
22
:
23
1999
Kaveh
R
.
Ghazi
<
ghazi
@caip
.
rutgers
.
edu
>
*
configure
.
in
(
host_xm_file
,
build_xm_file
)
:
Include
hwint
.
h
.
...
...
gcc/config/arm/arm.c
View file @
36ba9cb8
...
...
@@ -5703,11 +5703,7 @@ arm_print_operand (stream, x, code)
{
HOST_WIDE_INT
val
;
val
=
ARM_SIGN_EXTEND
(
~
INTVAL
(
x
));
if
(
val
<
-
1000
||
val
>
1000
)
fprintf
(
stream
,
HOST_WIDE_INT_PRINT_HEX
,
val
);
else
fprintf
(
stream
,
HOST_WIDE_INT_PRINT_DEC
,
val
);
fprintf
(
stream
,
HOST_WIDE_INT_PRINT_DEC
,
val
);
}
else
{
...
...
@@ -5737,10 +5733,7 @@ arm_print_operand (stream, x, code)
else
{
fputc
(
'#'
,
stream
);
if
(
val
<
-
1000
||
val
>
1000
)
fprintf
(
stream
,
HOST_WIDE_INT_PRINT_HEX
,
val
);
else
fprintf
(
stream
,
HOST_WIDE_INT_PRINT_DEC
,
val
);
fprintf
(
stream
,
HOST_WIDE_INT_PRINT_DEC
,
val
);
}
}
}
...
...
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