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
d10f5ecf
Commit
d10f5ecf
authored
Apr 03, 2003
by
Jan Hubicka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.c (print_operand): Do not bypass output_addr_const at flag_pic.
From-SVN: r65205
parent
70aadfcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/ChangeLog
+5
-1
gcc/config/i386/i386.c
+1
-3
No files found.
gcc/ChangeLog
View file @
d10f5ecf
Thu Apr 3 17:57:59 2003 J"orn Rennecke <joern.rennecke@superh.com>
Thu Apr 3 18:57:19 CEST 2003 Jan Hubicka <jh@suse.cz>
* i386.c (print_operand): Do not bypass output_addr_const at flag_pic.
Thu Apr 3 17:08:09 2003 J"orn Rennecke <joern.rennecke@superh.com>
* sh.c (sh_function_ok_for_sibcall): Return 0 if the current
* sh.c (sh_function_ok_for_sibcall): Return 0 if the current
function is an interrupt handler.
function is an interrupt handler.
...
...
gcc/config/i386/i386.c
View file @
d10f5ecf
...
@@ -7472,10 +7472,8 @@ print_operand (file, x, code)
...
@@ -7472,10 +7472,8 @@ print_operand (file, x, code)
}
}
x
=
XEXP
(
x
,
0
);
x
=
XEXP
(
x
,
0
);
if
(
flag_pic
&&
CONSTANT_ADDRESS_P
(
x
))
output_pic_addr_const
(
file
,
x
,
code
);
/* Avoid (%rip) for call operands. */
/* Avoid (%rip) for call operands. */
else
if
(
CONSTANT_ADDRESS_P
(
x
)
&&
code
==
'P'
if
(
CONSTANT_ADDRESS_P
(
x
)
&&
code
==
'P'
&&
GET_CODE
(
x
)
!=
CONST_INT
)
&&
GET_CODE
(
x
)
!=
CONST_INT
)
output_addr_const
(
file
,
x
);
output_addr_const
(
file
,
x
);
else
if
(
this_is_asm_operands
&&
!
address_operand
(
x
,
VOIDmode
))
else
if
(
this_is_asm_operands
&&
!
address_operand
(
x
,
VOIDmode
))
...
...
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