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
a88d48a4
Commit
a88d48a4
authored
Mar 14, 1996
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ASM_OUTPUT_DOUBLE_INT): Use 'X' if CONST_INT and
HOST_BITS_PER_WIDE_INT == 64. From-SVN: r11539
parent
b4c6e06c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
gcc/config/mips/mips.h
+8
-1
No files found.
gcc/config/mips/mips.h
View file @
a88d48a4
...
...
@@ -3538,7 +3538,14 @@ do { \
if (TARGET_64BIT) \
{ \
fprintf (STREAM, "\t.dword\t"); \
output_addr_const (STREAM, (VALUE)); \
if (HOST_BITS_PER_WIDE_INT < 64 || GET_CODE (VALUE) != CONST_INT) \
/* We can't use 'X' for negative numbers, because then we won't \
get the right value for the upper 32 bits. */
\
output_addr_const (STREAM, VALUE); \
else \
/* We must use 'X', because otherwise LONG_MIN will print as \
a number that the Irix 6 assembler won't accept. */
\
print_operand (STREAM, VALUE, 'X'); \
fprintf (STREAM, "\n"); \
} \
else \
...
...
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