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
d3a8b6a6
Commit
d3a8b6a6
authored
Feb 06, 2002
by
Nick Clifton
Committed by
Nick Clifton
Feb 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Accept LABEL_REFs as well as SYMBOL_REFs from the constant pool.
From-SVN: r49542
parent
f5ee37f2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+5
-0
gcc/dbxout.c
+2
-1
No files found.
gcc/ChangeLog
View file @
d3a8b6a6
2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
* dbxout.c (dbxout_symbol_location): Accept LABEL_REFs as well
as SYMBOL_REFs from the constant pool.
2002-02-06 Alexandre Oliva <aoliva@redhat.com>
2002-02-06 Alexandre Oliva <aoliva@redhat.com>
* dbxout.c (dbxout_parms): Apply DEBUGGER_ARG_OFFSET to parameters
* dbxout.c (dbxout_parms): Apply DEBUGGER_ARG_OFFSET to parameters
...
...
gcc/dbxout.c
View file @
d3a8b6a6
...
@@ -2198,7 +2198,8 @@ dbxout_symbol_location (decl, type, suffix, home)
...
@@ -2198,7 +2198,8 @@ dbxout_symbol_location (decl, type, suffix, home)
{
{
rtx
tmp
=
get_pool_constant
(
current_sym_addr
);
rtx
tmp
=
get_pool_constant
(
current_sym_addr
);
if
(
GET_CODE
(
tmp
)
==
SYMBOL_REF
)
if
(
GET_CODE
(
tmp
)
==
SYMBOL_REF
||
GET_CODE
(
tmp
)
==
LABEL_REF
)
current_sym_addr
=
tmp
;
current_sym_addr
=
tmp
;
}
}
...
...
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