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
f543676f
Commit
f543676f
authored
May 05, 1992
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r906
parent
6f90e075
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletions
+20
-1
gcc/dbxout.c
+1
-1
gcc/integrate.c
+19
-0
No files found.
gcc/dbxout.c
View file @
f543676f
...
...
@@ -1519,7 +1519,7 @@ dbxout_symbol (decl, local)
{
current_sym_addr
=
XEXP
(
DECL_RTL
(
decl
),
0
);
letter
=
TREE_PERMANENT
(
decl
)
?
'S'
:
'V
'
;
letter
=
decl_function_context
(
decl
)
?
'V'
:
'S
'
;
if
(
!
DECL_INITIAL
(
decl
))
current_sym_code
=
N_LCSYM
;
...
...
gcc/integrate.c
View file @
f543676f
...
...
@@ -1875,7 +1875,26 @@ copy_rtx_and_substitute (orig, map)
case
PC
:
case
CC0
:
case
CONST_INT
:
return
orig
;
case
SYMBOL_REF
:
/* Symbols which represent the address of a label stored in the constant
pool must be modified to point to a constant pool entry for the
remapped label. Otherwise, symbols are returned unchanged. */
if
(
CONSTANT_POOL_ADDRESS_P
(
orig
))
{
rtx
constant
=
get_pool_constant
(
orig
);
if
(
GET_CODE
(
constant
)
==
LABEL_REF
)
{
copy
=
rtx_alloc
(
LABEL_REF
);
PUT_MODE
(
copy
,
mode
);
XEXP
(
copy
,
0
)
=
map
->
label_map
[
CODE_LABEL_NUMBER
(
XEXP
(
constant
,
0
))];
LABEL_OUTSIDE_LOOP_P
(
copy
)
=
LABEL_OUTSIDE_LOOP_P
(
orig
);
copy
=
force_const_mem
(
Pmode
,
copy
);
return
XEXP
(
copy
,
0
);
}
}
return
orig
;
case
CONST_DOUBLE
:
...
...
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